mirror of https://github.com/midoks/mdserver-web
pull/109/head
parent
65351bd24d
commit
834f708654
@ -0,0 +1,51 @@ |
||||
server |
||||
{ |
||||
listen %s; |
||||
server_name %s; |
||||
index index.php index.html index.htm default.php default.htm default.html; |
||||
root %s; |
||||
|
||||
#SSL-START %s |
||||
#error_page 404/404.html; |
||||
#SSL-END |
||||
|
||||
#ERROR-PAGE-START %s |
||||
error_page 404 /404.html; |
||||
error_page 502 /502.html; |
||||
#ERROR-PAGE-END |
||||
|
||||
#PHP-INFO-START %s |
||||
include enable-php-%s.conf; |
||||
#PHP-INFO-END |
||||
|
||||
#REWRITE-START %s |
||||
include %s/panel/vhost/rewrite/%s.conf; |
||||
#REWRITE-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)$ |
||||
{ |
||||
expires 30d; |
||||
error_log off; |
||||
access_log /dev/null; |
||||
} |
||||
|
||||
location ~ .*\\.(js|css)?$ |
||||
{ |
||||
expires 12h; |
||||
error_log off; |
||||
access_log /dev/null; |
||||
} |
||||
access_log %s.log; |
||||
error_log %s.error.log; |
||||
} |
Loading…
Reference in new issue