dashboard/nginx.conf

10 lines
215 B
Nginx Configuration File

server {
listen 80;
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;
}
}