Nginx proxy pass the root url

This commit is contained in:
2021-12-11 02:41:17 +01:00
parent d87b96e62e
commit 760bcf6c94
+4
View File
@@ -38,6 +38,10 @@ http {
try_files $uri $uri/ @frontend;
}
location = / {
proxy_pass http://frontend;
}
location @frontend {
proxy_pass http://frontend;
}