This file contains hidden or 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
server { | |
server_name analytics-admin-proxy.domain; | |
root /var/www/piwik; | |
access_log /var/log/nginx/access-piwik-admin.log combined; | |
error_log /var/log/nginx/error-piwik-admin.log; | |
index index.php; | |
listen 8081 default_server; | |
location / { | |
try_files $uri $uri/ /index.php$args; | |
} |