运维网's Archiver
论坛
›
nginx
› nginx配置支持json
q666123
发表于 2016-12-26 10:48:40
nginx配置支持json
server {
listen 80;
server_name localhost;
#下面几行
error_page 405 =200 @405;
location @405 {
root html;
proxy_method GET;
proxy_pass http://localhost;
}
页:
[1]
查看完整版本:
nginx配置支持json