-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No longer use volume for Matomo install (#143)
* No longer use volume for Matomo install Having the code base in a volume makes upgrades and migrations a pain, additionaly the file copies on initial startup can be really slow on NFS drives. Having a volume allows for the dynamic installation of plugins, but then that is specific to that instance, if you were to run a several stage environment dev/stage/prod then one would need to manually check that the plugins exist is each environment. Better would be to extend the image and pack the plugins in with the installation. @see matomo-org/docker#57 @see matomo-org/docker#161 * Matomo: create a per-site administrator in addition to the super administrator for all sites.
- Loading branch information
1 parent
c85af8b
commit 624cbf8
Showing
5 changed files
with
67 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,20 +23,20 @@ metrics for. | |
|
||
### Confd Settings | ||
|
||
| Environment Variable | Confd Key | Default | Description | | ||
| :---------------------------- | :----------------------------- | :----------------------------------------------------------- | :------------------------------------------------------------ | | ||
| MATOMO_ASSUME_SECURE_PROTOCOL | /matomo/assume/secure/protocol | 1 | <https://matomo.org/faq/how-to-install/faq_98/> | | ||
| 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 | <https://matomo.org/faq/how-to/faq_91/> | | ||
| MATOMO_PROXY_CLIENT_HEADERS | /matomo/proxy/client/headers | HTTP_X_FORWARDED_FOR | <https://matomo.org/faq/how-to-install/faq_98/> | | ||
| MATOMO_PROXY_HOST_HEADERS | /matomo/proxy/host/headers | HTTP_X_FORWARDED_HOST | <https://matomo.org/faq/how-to-install/faq_98/> | | ||
| MATOMO_PROXY_URI_HEADER | /matomo/proxy/uri/header | 1 | <https://matomo.org/faq/how-to-install/faq_98/> | | ||
| MATOMO_SALT | /matomo/salt | 5a472390550bd59e4428a41aa472137b | Used to generate hashes. | | ||
| MATOMO_USER_EMAIL | /matomo/user/email | [email protected] | 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 | <https://matomo.org/faq/how-to-install/faq_98/> | | ||
| 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 | <https://matomo.org/faq/how-to/faq_91/> | | ||
| MATOMO_PROXY_CLIENT_HEADERS | /matomo/proxy/client/headers | HTTP_X_FORWARDED_FOR | <https://matomo.org/faq/how-to-install/faq_98/> | | ||
| MATOMO_PROXY_HOST_HEADERS | /matomo/proxy/host/headers | HTTP_X_FORWARDED_HOST | <https://matomo.org/faq/how-to-install/faq_98/> | | ||
| MATOMO_PROXY_URI_HEADER | /matomo/proxy/uri/header | 1 | <https://matomo.org/faq/how-to-install/faq_98/> | | ||
| MATOMO_SALT | /matomo/salt | 5a472390550bd59e4428a41aa472137b | Used to generate hashes. | | ||
| MATOMO_USER_EMAIL | /matomo/user/email | [email protected] | 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 | [email protected] | 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/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters