We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd0e836 commit 37793dfCopy full SHA for 37793df
nginx/filesystem/etc/nginx/conf.d/nginx.conf
@@ -44,16 +44,16 @@ server {
44
#access_log /var/log/nginx/host.access.log main;
45
46
location = / {
47
- return 404;
48
- }
49
-
50
- location / {
51
root /usr/share/nginx/html;
52
# First attempt to serve request as file, then
53
# as directory, then redirect to index(angular) if no file found.
54
try_files $uri $uri/ /index.html;
55
}
56
+ location / {
+ return 404;
+ }
+
57
location /api/v1 {
58
proxy_pass http://${IP_ADDRESS}:8081;
59
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
0 commit comments