1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-20 16:59:17 +08:00

18 lines
344 B
Plaintext
Raw Normal View History

2022-11-24 14:58:29 +08:00
server {
2022-11-24 16:06:18 +08:00
listen 80 ;
server_name 127.0.0.1;
2022-11-24 14:58:29 +08:00
charset utf-8;
default_type text/html;
location ~ /.well-known/acme-challenge {
allow all;
root /usr/share/nginx/html;
}
2022-11-24 16:06:18 +08:00
location /nginx_status {
stub_status on;
access_log off;
}
2022-11-24 14:58:29 +08:00
root /usr/share/nginx/html;
}