dashboard/nginx.conf
2021-06-17 01:01:43 +03:00

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