diff --git a/README.rst b/README.rst
index aa6b37ea5e82436505d4392614cb58be8c6a44f2..e39d439231d71a856a5942e085c9144836efac6a 100644
--- a/README.rst
+++ b/README.rst
@@ -1,7 +1,7 @@
 Django-yarnpkg
 ==============
 
-Easy way to use `yarnpkg <http://yarnpkg.com/>`_ with your `Django <https://www.djangoproject.com/>`_ project.
+Easy way to use `yarnpkg <https://yarnpkg.com/>`_ with your `Django <https://www.djangoproject.com/>`_ project.
 
 This is a fork of `django-bower <https://github.com/nvbn/django-bower>` by Vladimir Iakovlev.
 
@@ -41,7 +41,7 @@ If you need, you can manually set the path to yarnpkg:
 
     YARN_PATH = '/usr/bin/yarnpkg'
 
-You can see an example settings file in `example project <https://edugit.org/nik/django-yarnpkg/blob/master/example/example/settings.py>`_.
+You can see an example settings file in `example project <https://edugit.org/AlekSIS/libs/django-yarnpkg/blob/master/example/example/settings.py>`_.
 
 Usage
 -----
diff --git a/django_yarnpkg/exceptions.py b/django_yarnpkg/exceptions.py
index fd507a1183848323dfda71665e6982414d942446..46af09accc466fe47846bd2d032a96a2ea08698f 100644
--- a/django_yarnpkg/exceptions.py
+++ b/django_yarnpkg/exceptions.py
@@ -6,5 +6,5 @@ class YarnNotInstalled(CommandError):
 
     def __init__(self):
         super(YarnNotInstalled, self).__init__(
-            "Yarn not installed, read instruction here - http://yarnpkg.com/",
+            "Yarn not installed, read instruction here - https://yarnpkg.com/",
         )
diff --git a/docs/index.rst b/docs/index.rst
index a97d5c5559661dfde750070ac61bf25c7ea03c6a..b7a59d54d39f9320d75cfee7623549fc7c60b06a 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -6,7 +6,7 @@
 Welcome to django-yarnpkg's documentation!
 ========================================
 
-Easy way to use `Yarn <http://yarnpkg.com/>`_ with your `django <https://www.djangoproject.com/>`_ project.
+Easy way to use `Yarn <https://yarnpkg.com/>`_ with your `django <https://www.djangoproject.com/>`_ project.
 
 Yarn is a package manager for the web. It offers a generic, unopinionated solution to the problem of front-end package management, while exposing the package dependency model via an API that can be consumed by a more opinionated build stack. There are no system wide dependencies, no dependencies are shared between different apps, and the dependency tree is flat.
 
@@ -22,7 +22,7 @@ Contents:
    tests
    example
 
-`Visit django-yarnpkg github page. <https://edugit.org/nik/django-yarnpkg>`_
+`Visit django-yarnpkg EduGit page. <https://edugit.org/AlekSIS/libs/django-yarnpkg>`_
 
 
 
diff --git a/docs/installation.rst b/docs/installation.rst
index 637fcd688a1461b2ce090a33d9b17d2f10a7f6ca..6b1a61a16da4b9e4fe56192e6db950df1376acdc 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -2,7 +2,7 @@
 Installation
 ************
 
-Install `Yarn <http://yarnpkg.com/>`_ from npm:
+Install `Yarn <https://yarnpkg.com/>`_ from npm:
 
 .. code-block:: bash
 
diff --git a/setup.py b/setup.py
index 127267601caec4442f88deeb357df30840b4815c..73b6bf1d0b3cd73ed4d62c2b4f27ba4a72a56db1 100644
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@ setup(
     keywords='',
     author='Dominik George',
     author_email='nik@naturalnet.de',
-    url='https://edugit.org/nik/django-yarnpkg',
+    url='https://edugit.org/AlekSIS/libs/django-yarnpkg',
     license='Apache-2.0',
     packages=find_packages(exclude=['example']),
     include_package_data=True,