Files
Nilai_Clock/nginx.conf
T
2025-06-20 11:28:53 +08:00

12 lines
182 B
Nginx Configuration File

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