Bachelorthesis_Code/frontend/nginx/nginx.conf
cami d28964dd1f
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
added nginx back :-)
2021-07-13 00:38:46 +02:00

15 lines
381 B
Nginx Configuration File

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;
}
}