宝塔面板ssl无法正常续约修改配置文件
server
{
listen 80;
server_name 你的域名;
index index.html index.htm index.php;
root /www/wwwroot/你的网站目录;
# 以下默认配置不要动
location ~ /\.
{
deny all;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
access_log /www/wwwlogs/你的域名.log;
error_log /www/wwwlogs/你的域名.error.log;
}
aaaaaaaa