From d4633a0f463ea29edbe8a5ed284d2cd4bb619883 Mon Sep 17 00:00:00 2001 From: mguschin Date: Mon, 9 Mar 2026 16:41:09 +0300 Subject: [PATCH] Update nginx conf. --- .gitignore | 1 + nginx/nginx.conf | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1a40508..36de3a5 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ passwords.txt .env __pycache__/ *.pyc +certbot diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 62a3f52..bf1c8ba 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -27,7 +27,7 @@ server { ssl_prefer_server_ciphers on; location / { - proxy_pass http://web:8000; + proxy_pass http://web; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;