mirror of
https://github.com/fluencelabs/dashboard
synced 2024-12-04 23:30:20 +00:00
10 lines
215 B
Nginx Configuration File
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;
|
|
}
|
|
}
|