From a19bb206cb4d2c89acb2f3464465d925cb5e6ba8 Mon Sep 17 00:00:00 2001 From: Stepan Vladovskiy Date: Sun, 26 Jan 2025 17:25:37 -0300 Subject: [PATCH] debug: nginx conf sigil with custom logs with headers and backslash in dscrs.site --- nginx.conf.sigil | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/nginx.conf.sigil b/nginx.conf.sigil index 0008c8b2..fb794f2f 100644 --- a/nginx.conf.sigil +++ b/nginx.conf.sigil @@ -1,3 +1,7 @@ +log_format custom '$remote_addr - $remote_user [$time_local] "$request" ' + 'status=$status allow_origin=$allow_origin ' + '"$http_referer" "$http_user_agent"'; + {{ $proxy_settings := "proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $http_connection; proxy_set_header Host $http_host; proxy_set_header X-Request-Start $msec;" }} {{ $gzip_settings := "gzip on; gzip_min_length 1100; gzip_buffers 4 32k; gzip_types text/css text/javascript text/xml text/plain text/x-component application/javascript application/x-javascript application/json application/xml application/rss+xml font/truetype application/x-font-ttf font/opentype application/vnd.ms-fontobject image/svg+xml; gzip_vary on; gzip_comp_level 6;" }} @@ -8,8 +12,8 @@ map $http_origin $allow_origin { ~^https?:\/\/(.*\.)?localhost(:\d+)?$ $http_origin; ~^https?:\/\/(.*\.)?discours\.io$ $http_origin; - ~^https?:\/\/(.*\.)?dscrs\.site(:[0-9]+)?$ $http_origin; - ~^https?:\/\/testing\.(discours\.io|dscrs\.site)$ $http_origin; + ~^https?:\/\/(.*\.)?dscrs\.site$ $http_origin; + ~^https?:\/\/testing\.(discours\.io|dscrs\.site/)$ $http_origin; ~^https?:\/\/discoursio-webapp(-.*)?\.vercel\.app$ $http_origin; default ""; } @@ -30,7 +34,7 @@ server { listen [::]:{{ $listen_port }}; listen {{ $listen_port }}; server_name {{ $.NOSSL_SERVER_NAME }}; - access_log /var/log/nginx/{{ $.APP }}-access.log; + access_log /var/log/nginx/{{ $.APP }}-access.log custom; error_log /var/log/nginx/{{ $.APP }}-error.log; client_max_body_size 100M; @@ -38,7 +42,7 @@ server { listen [::]:{{ $listen_port }} ssl http2; listen {{ $listen_port }} ssl http2; server_name {{ $.NOSSL_SERVER_NAME }}; - access_log /var/log/nginx/{{ $.APP }}-access.log; + access_log /var/log/nginx/{{ $.APP }}-access.log custom; error_log /var/log/nginx/{{ $.APP }}-error.log; ssl_certificate {{ $.APP_SSL_PATH }}/server.crt; ssl_certificate_key {{ $.APP_SSL_PATH }}/server.key;