|
location ~ .*\.php?$
{
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 50m;
client_body_buffer_size 256k;
proxy_connect_timeout 30;
proxy_send_timeout 30;
proxy_read_timeout 30;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
proxy_next_upstream error timeout invalid_header http_500 http_503 http_404;
proxy_max_temp_file_size 128m;
if (!-f $request_filename) {
proxy_pass http://test;
break;
}
include conf/fcgi.conf;
fastcgi_index index.php;
fastcgi_pass 127.0.0.1:9999;
}
location /status {
stub_status on;
access_log off;
阅读更多内容:<<上一页 · 1 · 2 · 3 · 4 · 下一页>>
|