localhost in nginx config

This commit is contained in:
vabene1111
2025-07-31 15:49:48 +02:00
parent 01fff0783f
commit 0a2f83cf85

View File

@@ -19,7 +19,7 @@ server {
# pass requests for dynamic content to gunicorn # pass requests for dynamic content to gunicorn
location / { location / {
proxy_set_header Host $http_host; proxy_set_header Host $http_host;
proxy_pass http://web_recipes:8080; proxy_pass http://localhost:8080;
error_page 502 /errors/http502.html; error_page 502 /errors/http502.html;
} }