Modify Dockerfile and workflow config
diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml
index 01ed345..efaef33 100644
--- a/.github/workflows/deploy-website.yml
+++ b/.github/workflows/deploy-website.yml
@@ -29,7 +29,7 @@
       - name: Copy Python docs
         run: |
           mkdir -p ./website-v2/build/python
-          cp -r docs-python/* ./website-v2/build/python
+          cp -r docs-python/* ./website-v2/build/docs/docs/python
       - name: Deploy
         uses: peaceiris/actions-gh-pages@v2.4.0
         env:
diff --git a/Dockerfile b/Dockerfile
index 72ffae2..1a80650 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,7 @@
 FROM nginx
 
 COPY website-v2/build/ /usr/share/nginx/html
-COPY docs-python/ /usr/share/nginx/html/python
+COPY docs-python/ /usr/share/nginx/html/docs/docs/python
 
 COPY nginx_config/nginx.conf /etc/nginx/nginx.conf
 COPY nginx_config/default.conf /etc/nginx/conf.d/default.conf
diff --git a/website-v2/src/navbar/navbar.js b/website-v2/src/navbar/navbar.js
index 03ea66b..eb99557 100644
--- a/website-v2/src/navbar/navbar.js
+++ b/website-v2/src/navbar/navbar.js
@@ -13,7 +13,7 @@
         "label": "Apache StreamPipes - User Guide",
       },
       {
-        "to": "docs/python",
+        "to": "docs/docs/python",
         "label": "Apache StreamPipes - Python",
       },
       {
@@ -105,5 +105,23 @@
         label: "Thanks"
       }
     ]
-  }
+  },
+  {
+    href: "https://github.com/apache/streampipes",
+    position: "right",
+    className: "header-github-link",
+    "aria-label": "Apache StreamPipes Github",
+  },
+  {
+    href: "https://linkedin.com/company/apache-streampipes",
+    position: "right",
+    className: "header-github-link",
+    "aria-label": "Apache StreamPipes LinkedIn",
+  },
+  {
+    href: "https://twitter.com/streampipes",
+    position: "right",
+    className: "header-github-link",
+    "aria-label": "Apache StreamPipes Twitter",
+  },
 ];
diff --git a/website-v2/src/plugins/matomo/index.js b/website-v2/src/plugins/matomo/index.js
index bdd5126..0bdb68f 100644
--- a/website-v2/src/plugins/matomo/index.js
+++ b/website-v2/src/plugins/matomo/index.js
@@ -46,13 +46,11 @@
             tagName: 'script',
             innerHTML: `
               var _paq = window._paq = window._paq || [];
-              _paq.push(['setRequestMethod', 'POST']);
+              _paq.push(['disableCookies']);
               _paq.push(['trackPageView']);
               _paq.push(['enableLinkTracking']);
-              _paq.push(['enableHeartBeatTimer']);
               (function() {
                 var u="${matomoUrl}";
-                _paq.push(['setRequestMethod', 'POST']);
                 _paq.push(['setTrackerUrl', u+'${phpLoader}']);
                 _paq.push(['setSiteId', '${siteId}']);
                 var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];