This commit is contained in:
nora 2022-10-24 20:08:50 +02:00
parent fa679ed73d
commit 0210c91e7d
No known key found for this signature in database

View file

@ -71,7 +71,8 @@ http {
server_name "hugo-chat.nilstrieb.dev"; server_name "hugo-chat.nilstrieb.dev";
location / { location / {
proxy_pass http://hugo-chat-frontend:80/; set $upstream_frontend hugo-chat-frontend;
proxy_pass http://$upstream_frontend:80/;
} }
} }