Files
2026-07-10 07:24:34 +07:00

9 lines
165 B
Nginx Configuration File

server {
listen 8000;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}