mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1005 B
45 lines
1005 B
server
|
|
{
|
|
listen {$ZABBIX_PORT};
|
|
server_name 127.0.0.1;
|
|
index index.php index.html index.htm default.php default.htm default.html;
|
|
root {$ZABBIX_ROOT};
|
|
|
|
#SSL-START
|
|
#error_page 404/404.html;
|
|
#SSL-END
|
|
|
|
#301-START
|
|
|
|
#PROXY-START
|
|
|
|
#ERROR-PAGE-START
|
|
#error_page 404 /404.html;
|
|
#error_page 502 /502.html;
|
|
#ERROR-PAGE-END
|
|
|
|
#PHP-INFO-START
|
|
include {$SERVER_PATH}/web_conf/php/conf/enable-{$PHP_VER}.conf;
|
|
#PHP-INFO-END
|
|
|
|
#禁止访问的文件或目录
|
|
location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
|
|
{
|
|
return 404;
|
|
}
|
|
|
|
#一键申请SSL证书验证目录相关设置
|
|
location ~ \.well-known{
|
|
allow all;
|
|
}
|
|
|
|
location ~ .*\\.(gif|jpg|jpeg|png|bmp|swf|js|css)$
|
|
{
|
|
expires 30d;
|
|
error_log /dev/null;
|
|
access_log /dev/null;
|
|
}
|
|
|
|
access_log /www/wwwlogs/zabbix.log main;
|
|
error_log /www/wwwlogs/zabbix.error.log;
|
|
} |