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;