diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2b0da7acd151b97a4acf73dccb24b414aba1cf51..4cbdea275e5d330aad927dccb589f1aeebb4cf89 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,6 +4,7 @@ test:
   stage: test
   script:
   - pip install -U sphinx
+  - cp -r Docs/* .
   - sphinx-build -b html . public
   only:
   - branches
@@ -14,10 +15,11 @@ pages:
   stage: deploy
   script:
   - pip install -U sphinx
+  - cp -r Docs/* .
   - sphinx-build -b html . public
   - cp Docs/hhu-logo.png public/_static/hhu-logo.png
   artifacts:
     paths:
-    - public/Docs
+    - public
   only:
   - master
diff --git a/conf.py b/conf.py
index 92df7944a8badbc7fc9f70acddf832b84f4f6402..dc3d753b6e615b412afa51b0afdc12a6f3c77ece 100644
--- a/conf.py
+++ b/conf.py
@@ -73,7 +73,7 @@ source_suffix = '.rst'
 #source_encoding = 'utf-8-sig'
 
 # The master toctree document.
-master_doc = 'Docs/index'
+master_doc = 'index'
 
 # General information about the project.
 project = 'PyDial3'