diff --git a/matomo/Dockerfile b/matomo/Dockerfile
index df26fbab..19637d81 100644
--- a/matomo/Dockerfile
+++ b/matomo/Dockerfile
@@ -36,7 +36,7 @@ ENV \
MATOMO_USER_NAME=admin \
MATOMO_USER_PASS='$2y$10$S38e7HPM9LI3aOIvcnRsfuMCm4ipNP572QsvbCK60upoHVJ61hMrS'
-COPY --from=download --chown=nginx:nginx /opt/matomo /opt/matomo
+COPY --from=download --chown=nginx:nginx /opt/matomo /var/www/matomo
COPY rootfs /
diff --git a/matomo/README.md b/matomo/README.md
index 5d4aa18a..fef7d1ec 100644
--- a/matomo/README.md
+++ b/matomo/README.md
@@ -23,20 +23,20 @@ metrics for.
### Confd Settings
-| Environment Variable | Confd Key | Default | Description |
-| :---------------------------- | :----------------------------- | :----------------------------------------------------------- | :------------------------------------------------------------ |
-| MATOMO_ASSUME_SECURE_PROTOCOL | /matomo/assume/secure/protocol | 1 | |
-| MATOMO_DEFAULT_HOST | /matomo/default/host | islandora.traefik.me | The URL of the default site for which to gather metrics for |
-| MATOMO_DEFAULT_NAME | /matomo/default/name | Islandora | The name of the default site |
-| MATOMO_DEFAULT_TIMEZONE | /matomo/default/timezone | America/Halifax | The timezone where the default site is hosted |
-| MATOMO_FORCE_SSL | /matomo/force/ssl | 1 | |
-| MATOMO_PROXY_CLIENT_HEADERS | /matomo/proxy/client/headers | HTTP_X_FORWARDED_FOR | |
-| MATOMO_PROXY_HOST_HEADERS | /matomo/proxy/host/headers | HTTP_X_FORWARDED_HOST | |
-| MATOMO_PROXY_URI_HEADER | /matomo/proxy/uri/header | 1 | |
-| MATOMO_SALT | /matomo/salt | 5a472390550bd59e4428a41aa472137b | Used to generate hashes. |
-| MATOMO_USER_EMAIL | /matomo/user/email | admin@example.org | The site administrator email |
-| MATOMO_USER_NAME | /matomo/user/name | admin | The site administrator user |
-| MATOMO_USER_PASS | /matomo/user/pass | $2y$10$S38e7HPM9LI3aOIvcnRsfuMCm4ipNP572QsvbCK60upoHVJ61hMrS | The site administrator's password (See how to generate below) |
+| Environment Variable | Confd Key | Default | Description |
+| :---------------------------- | :----------------------------- | :----------------------------------------------------------- | :-------------------------------------------------------------- |
+| MATOMO_ASSUME_SECURE_PROTOCOL | /matomo/assume/secure/protocol | 1 | |
+| MATOMO_DEFAULT_HOST | /matomo/default/host | islandora.traefik.me | The URL of the default site for which to gather metrics for |
+| MATOMO_DEFAULT_NAME | /matomo/default/name | Islandora | The name of the default site |
+| MATOMO_DEFAULT_TIMEZONE | /matomo/default/timezone | America/Halifax | The timezone where the default site is hosted |
+| MATOMO_FORCE_SSL | /matomo/force/ssl | 1 | |
+| MATOMO_PROXY_CLIENT_HEADERS | /matomo/proxy/client/headers | HTTP_X_FORWARDED_FOR | |
+| MATOMO_PROXY_HOST_HEADERS | /matomo/proxy/host/headers | HTTP_X_FORWARDED_HOST | |
+| MATOMO_PROXY_URI_HEADER | /matomo/proxy/uri/header | 1 | |
+| MATOMO_SALT | /matomo/salt | 5a472390550bd59e4428a41aa472137b | Used to generate hashes. |
+| MATOMO_USER_EMAIL | /matomo/user/email | admin@example.org | The matomo administrator email |
+| MATOMO_USER_NAME | /matomo/user/name | admin | The matomo administrator user |
+| MATOMO_USER_PASS | /matomo/user/pass | $2y$10$S38e7HPM9LI3aOIvcnRsfuMCm4ipNP572QsvbCK60upoHVJ61hMrS | The matomo administrator's password (See how to generate below) |
To regenerate a the `MATOMO_USER_PASS` you must use the following snippet of
[PHP](https://matomo.org/faq/how-to/faq_191/).
@@ -73,11 +73,15 @@ Additional multi-sites can be defined by adding more environment variables,
following the above conventions, only the `MATOMO_SITE_{SITE}_HOST` is required
to create an additional site:
-| Environment Variable | Confd Key | Default | Description |
-| :-------------------------- | :--------------------------- | :-------------- | :-------------------------------------------------- |
-| MATOMO_SITE_{SITE}_HOST | /matomo/site/{SITE}/host | | The URL of the site for which to gather metrics for |
-| MATOMO_SITE_{SITE}_NAME | /matomo/site/{SITE}/name | {SITE} | The name of the site |
-| MATOMO_SITE_{SITE}_TIMEZONE | /matomo/site/{SITE}/timezone | America/Halifax | The timezone the site is hosted in |
+| Environment Variable | Confd Key | Default | Description |
+| :---------------------------- | :----------------------------- | :----------------------------------------------------------- | :------------------------------------------------------------ |
+| MATOMO_SITE_{SITE}_HOST | /matomo/site/{SITE}/host | | The URL of the site for which to gather metrics for |
+| MATOMO_SITE_{SITE}_NAME | /matomo/site/{SITE}/name | {SITE} | The name of the site |
+| MATOMO_SITE_{SITE}_TIMEZONE | /matomo/site/{SITE}/timezone | America/Halifax | The timezone the site is hosted in |
+| MATOMO_SITE_{SITE}_TIMEZONE | /matomo/site/{SITE}/timezone | America/Halifax | The timezone the site is hosted in |
+| MATOMO_SITE_{SITE}_USER_EMAIL | /matomo/site/{SITE}/user/email | admin@example.org | The site administrator email |
+| MATOMO_SITE_{SITE}_USER_NAME | /matomo/site/{SITE}/user/name | {SITE}_admin | The site administrator user |
+| MATOMO_SITE_{SITE}_USER_PASS | /matomo/site/{SITE}/user/pass | $2y$10$S38e7HPM9LI3aOIvcnRsfuMCm4ipNP572QsvbCK60upoHVJ61hMrS | The site administrator's password (See how to generate above) |
[base image]: ../base/README.md
[Matomo Documentation]: https://matomo.org/docs/
diff --git a/matomo/rootfs/etc/cont-init.d/00-container-environment-01-set-subsite-defaults.sh b/matomo/rootfs/etc/cont-init.d/00-container-environment-01-set-subsite-defaults.sh
index 829ffdac..bc7b6ac0 100755
--- a/matomo/rootfs/etc/cont-init.d/00-container-environment-01-set-subsite-defaults.sh
+++ b/matomo/rootfs/etc/cont-init.d/00-container-environment-01-set-subsite-defaults.sh
@@ -39,5 +39,23 @@ MATOMO_SUBSITES=$(