1
0
mirror of https://github.com/fluencelabs/dashboard synced 2025-03-17 13:50:50 +00:00

10 lines
215 B
Nginx Configuration File
Raw Normal View History

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