added nginx back :-)
This commit is contained in:
parent
1b7aba4a70
commit
d28964dd1f
2 changed files with 22 additions and 2 deletions
14
frontend/nginx/nginx.conf
Normal file
14
frontend/nginx/nginx.conf
Normal file
|
@ -0,0 +1,14 @@
|
|||
server {
|
||||
listen 80;
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html index.htm;
|
||||
# to redirect all the requests to index.html,
|
||||
# useful when you are using react-router
|
||||
try_files $uri /index.html;
|
||||
}
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
location = /50x.html {
|
||||
root /usr/share/nginx/html;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue