diff options
Diffstat (limited to 'frontend/nginx.conf')
| -rw-r--r-- | frontend/nginx.conf | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/frontend/nginx.conf b/frontend/nginx.conf new file mode 100644 index 0000000..f749e02 --- /dev/null +++ b/frontend/nginx.conf @@ -0,0 +1,9 @@ +server { + listen 80; + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } +} |
