1Panel/cmd/server/nginx_conf/website_default.conf

24 lines
664 B
Text
Raw Normal View History

2022-10-28 17:04:57 +08:00
server {
listen 80;
server_name ko.wp-1.com;
2022-11-21 16:28:51 +08:00
index index.php index.html index.htm default.php default.htm default.html;
2022-10-28 17:04:57 +08:00
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Real-IP $remote_addr;
proxy_http_version 1.1;
2022-12-08 17:07:56 +08:00
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
2022-10-28 17:04:57 +08:00
2022-11-30 21:40:05 +08:00
access_log /www/sites/domain/log/access.log main;
error_log /www/sites/domain/log/error.log;
2022-11-30 21:40:05 +08:00
location ^~ /.well-known/acme-challenge {
allow all;
root /usr/share/nginx/html;
}
2022-10-28 17:04:57 +08:00
}