您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

26 行
520 B

server {
listen 80;
listen [::]:80;
server_name _;
root /webroot/;
client_max_body_size 100m;
access_log /dev/stdout;
error_log /dev/stdout info;
location ~ ^\/share_v2.php\/([^\/]+\/[^\/\?]+)(?:.*)$ {
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root/share_v2.php;
fastcgi_param UPLOADED_FILENAME $1;
include fastcgi_params;
fastcgi_intercept_errors on;
}
location = / {
return 404;
}
location ~* ^\/[^\/]+\.(php|sh|conf)$ {
return 404;
}
}