expose matomo over ssl
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Giles Bradshaw 2020-05-05 11:30:05 +01:00
parent 61b214c487
commit a8e64dcab2
1 changed files with 5 additions and 0 deletions

View File

@ -57,6 +57,11 @@ server {
location / {
proxy_pass ${MATOMO_PROXY_PASS};
proxy_set_header Host ${DOLLAR}http_host;
proxy_set_header X-Real-IP ${DOLLAR}remote_addr;
proxy_set_header X-Forwarded-For ${DOLLAR}proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto ${DOLLAR}scheme;
proxy_buffering off;
}
}