diff --git a/server/nginx.conf b/server/nginx.conf index 5ffc4d8..228047d 100644 --- a/server/nginx.conf +++ b/server/nginx.conf @@ -61,7 +61,11 @@ http { } # There probably is a better solution using wildcards - location /app { + location = /app { + return 301 https://$host/app/; + } + + location = / { return 301 https://$host/app/; }