Compare commits

..

1 Commits

Author SHA1 Message Date
Simon e6eb845efa feat(Matomo): Add service 2022-02-15 00:05:58 +01:00
1 changed files with 3 additions and 3 deletions

View File

@ -4,11 +4,11 @@ upstream php-handler {
server {
listen 80;
server_name ${MATOMO_DOMAIN}
server_name ${MATOMO_DOMAIN}
add_header Referrer-Policy origin always; # make sure outgoing links don't show the URL to the Matomo instance
add_header X-Content-Type-Options "nosniff" always;
add_header X-XSS-Protection "1; mode=block" always;
add_header X-Content-Type-Options "nosniff" always;
add_header X-XSS-Protection "1; mode=block" always;
root /var/www/html; # replace with path to your matomo instance
index index.php;
try_files $uri $uri/ =404;