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

24 lines
657 B
Plaintext
Raw Normal View History

2022-10-28 09:04:57 +00:00
server {
listen 80;
server_name ko.wp-1.com;
2022-11-21 08:28:51 +00:00
index index.php index.html index.htm default.php default.htm default.html;
2022-10-28 09:04:57 +00: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 09:07:56 +00:00
proxy_set_header Upgrade $http_upgrade;
2022-10-28 09:04:57 +00:00
proxy_set_header Connection "upgrade";
2022-11-30 13:40:05 +00:00
access_log /www/sites/domain/log/access.log main;
error_log /www/sites/domain/log/error.log;
2022-11-30 13:40:05 +00:00
location ^~ /.well-known/acme-challenge {
allow all;
root /usr/share/nginx/html;
}
2022-10-28 09:04:57 +00:00
}