Files
panels/services/frontend/nginx.conf
2023-09-27 20:27:25 +01:00

9 lines
134 B
Nginx Configuration File

server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri /index.html =404;
}
}