From e79a458fe4ab56aaf5d1916e5d33fad80eb41552 Mon Sep 17 00:00:00 2001 From: Sergey Paramoshkin Date: Fri, 29 Aug 2025 13:10:35 +0300 Subject: [PATCH] fix --- configs/nginx/conf.d/landing.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configs/nginx/conf.d/landing.conf b/configs/nginx/conf.d/landing.conf index a80f897..5bafebb 100644 --- a/configs/nginx/conf.d/landing.conf +++ b/configs/nginx/conf.d/landing.conf @@ -1,12 +1,12 @@ server { listen 80; - server_name tqo.spottorg.ru; + server_name landingtqo.spottorg.ru; return 301 https://$server_name$request_uri; } server { listen 443 ssl; - server_name tqo.spottorg.ru; + server_name landingtqo.spottorg.ru; ssl_certificate /etc/letsencrypt/live/spottorg.ru/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/spottorg.ru/privkey.pem; @@ -14,8 +14,8 @@ server { client_max_body_size 10m; - access_log /var/log/nginx/tqo.spottorg.ru_access.log json; - error_log /var/log/nginx/tqo.spottorg.ru_error.log; + access_log /var/log/nginx/landingtqo.spottorg.ru_access.log json; + error_log /var/log/nginx/landingtqo.spottorg.ru_error.log; location / { proxy_pass http://landing:80;