commit cf910f795d92926c0e495e5242c5e6251052ee40 parent 462d2fe203e3a79d07a4ed33782c2e79ba7bd20a Author: Christian Grothoff <christian@grothoff.org> Date: Fri, 14 Feb 2025 14:43:07 +0100 -fix config files Diffstat:
| M | roles/auditor/templates/etc/nginx/sites-available/auditor-nginx.conf.j2 | | | 4 | ++-- |
| M | roles/exchange/templates/etc/nginx/sites-available/exchange-nginx.conf.j2 | | | 2 | +- |
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/roles/auditor/templates/etc/nginx/sites-available/auditor-nginx.conf.j2 b/roles/auditor/templates/etc/nginx/sites-available/auditor-nginx.conf.j2 @@ -27,7 +27,7 @@ server { if ($http_user_agent ~* "Bytedance|bytespider|Amazonbot|Claude|Anthropic|AI|GPT|acebook") { return 451 ; } error_log /var/log/nginx/auditor.{{ DOMAIN_NAME }}.err; - access_log /var/log/nginx/auditor.{{ DOMAIN_NAME }}.log apm; + access_log /var/log/nginx/auditor.{{ DOMAIN_NAME }}.log; access_log /var/log/nginx/auditor.{{ DOMAIN_NAME }}.tal taler if=$log_perf; location / { @@ -35,7 +35,7 @@ server { if ($http_authorization != "Bearer {{ AUDITOR_ACCESS_TOKEN }}") { return 401; } - proxy_pass http://unix:/var/run/taler/auditor-httpd/auditor-http.sock; + proxy_pass http://unix:/var/run/taler-auditor/httpd/auditor-http.sock; } # Paths without any access control diff --git a/roles/exchange/templates/etc/nginx/sites-available/exchange-nginx.conf.j2 b/roles/exchange/templates/etc/nginx/sites-available/exchange-nginx.conf.j2 @@ -24,7 +24,7 @@ server { keepalive_timeout 6500s; error_log /var/log/nginx/exchange.{{ DOMAIN_NAME }}.err; - access_log /var/log/nginx/exchange.{{ DOMAIN_NAME }}.log apm; + access_log /var/log/nginx/exchange.{{ DOMAIN_NAME }}.log; access_log /var/log/nginx/exchange.{{ DOMAIN_NAME }}.tal taler if=$log_perf;