nginx使用说明
反向代理
一般将后台接口作为反向代理的服务器,主要声明如下内容
upstream uicps {
server www.baidu.com;
}
server {
listen 9001;
server_name localhost;
root html;
index index.html index.htm index.php;
location / {
proxy_pass http://uicps;
proxy_redirect off;
proxy_set_header Host www.baidu.com;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
proxy_max_temp_file_size 0;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}
主要通过proxy_pass 设置代理的服务地址,其它的proxy_* 配置项可依据项目情况进行变更。
9001端口代理百度后访问robots目录的效果
|