configs: Fix a problem with submissions routing
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
nemunaire 2021-07-22 17:53:56 +02:00
commit 9a9d742e21
2 changed files with 2 additions and 2 deletions

View file

@ -159,7 +159,7 @@ server {
location /submit/ {
include fic-auth.conf;
proxy_pass http://${HOST_FRONTEND}/submission;
proxy_pass http://${HOST_FRONTEND}/submission/;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-FIC-Team $team;
proxy_redirect off;

View file

@ -172,7 +172,7 @@ server {
location /submit/ {
include fic-auth.conf;
proxy_pass http://frontend:8080/submission;
proxy_pass http://frontend:8080/submission/;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-FIC-Team $team;
proxy_redirect off;