19yuke2-frontend/nginx/conf.d/www.conf

10 lines
162 B
Plaintext
Raw Normal View History

2023-08-05 14:06:39 +08:00
server {
listen 80;
listen [::]:80;
server_name www.19yuke2.cn;
location / {
root /usr/local/nginx/html/;
try_files $uri $uri/ /index.html;
}
}