Fix GooseFarm proxy_pass: remove trailing slash for basePath compatibility
All checks were successful
Deploy Nginx Config to Ubuntu Server / deploy (push) Successful in 1s

This commit is contained in:
happybell80 2025-11-03 21:42:14 +09:00
parent 323250c12f
commit 219ea2b99d

View File

@ -53,7 +53,7 @@ server {
# GooseFarm Frontend
location /goosefarm {
proxy_pass http://localhost:3001/;
proxy_pass http://localhost:3001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
@ -202,7 +202,7 @@ server {
# GooseFarm Frontend
location /goosefarm {
proxy_pass http://localhost:3001/;
proxy_pass http://localhost:3001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';