mirror of
https://github.com/hexolan/panels.git
synced 2026-03-26 20:41:15 +00:00
9 lines
134 B
Nginx Configuration File
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;
|
|
}
|
|
} |