Files
sinemedia_official_website/nginx.conf
T
2026-06-23 15:47:39 +08:00

11 lines
151 B
Nginx Configuration File

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