Files
virt-dashboard/frontend/nginx/nginx.conf
2023-09-08 19:05:37 +03:00

8 lines
140 B
Nginx Configuration File

server {
listen 3000;
server_name _;
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}