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;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "upgrade";
|
|
|
|
|
2022-11-30 21:40:05 +08:00
|
|
|
|
|
|
|
access_log /www/sites/domain/log/access.log;
|
|
|
|
|
|
|
|
access_by_lua_file /www/common/waf/access.lua;
|
|
|
|
set $RulePath /www/sites/domain/waf/rules;
|
|
|
|
set $logdir /www/sites/domain/waf/log;
|
|
|
|
set $CCDeny on;
|
|
|
|
set $attacklog on;
|
|
|
|
set $whiteModule on;
|
|
|
|
set $getMatch on;
|
|
|
|
set $cookieMatch on;
|
|
|
|
set $postMatch on;
|
|
|
|
set $Redirect on;
|
2022-10-28 17:04:57 +08:00
|
|
|
}
|