dashboard/nginx.conf

10 lines
217 B
Nginx Configuration File
Raw Permalink Normal View History

2021-06-18 16:49:56 +03:00
server {
listen 8080;
server_name frontend;
location / {
# This would be the directory where your React app's static files are stored at
root /usr/share/nginx/html;
try_files $uri /index.html;
}
}