Skip to content

Commit

Permalink
Revert service hostnames used by Nginx
Browse files Browse the repository at this point in the history
With the revert of the Docker Compose config for the release, the
previous service names also need to be used by Nginx.
  • Loading branch information
dgerhardt committed Mar 1, 2024
1 parent feb4e55 commit 045ab08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .docker/images/arsnova-proxy/templates/arsnova.conf.template
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
upstream gateway {
server arsnova-server-gateway:8080;
server arsnova-http-gateway:8080;
}

upstream websocket {
server arsnova-server-websocket:8080;
server arsnova-ws-gateway:8080;
}

server {
Expand All @@ -15,7 +15,7 @@ server {

# Modern client
location / {
proxy_pass http://arsnova-webclient;
proxy_pass http://arsnova-web;
proxy_http_version 1.1;
gzip on;
gzip_types application/javascript text/css image/svg+xml;
Expand Down

0 comments on commit 045ab08

Please sign in to comment.