19yuke2-frontend/nginx/conf.d/root.conf
2023-08-05 11:24:31 +08:00

10 lines
165 B
Plaintext

server {
listen 80;
listen [::]:80;
server_name test.thehrz.net;
location / {
root /usr/local/nginx/html/;
try_files $uri $uri/ /index.html;
}
}