wiki/nginx.conf

12 lines
206 B
Nginx Configuration File
Raw Normal View History

2023-07-11 23:07:36 +05:30
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}