天天看點

Nginx常見配置

應公司需求 最近修改了nginx 配置:

透傳用戶端IP和端口給後端服務

(PHP)

fastcgi_param X-Real-IP $http_x_forwarded_for;

fastcgi_param X-Real-PORT $remote_port;

(proxy_pass)

proxy_set_header X-Real-IP  $http_x_forwarded_for;

proxy_set_header X-Real-Port $remote_port;

支援跨域:

add_header "Access-Control-Allow-Headers" "Content-Type, *";

add_header "Access-Control-Allow-Origin" "$http_origin";

add_header  "Access-Control-Allow-Credentials" "true";

add_header  "Access-Control-Allow-Methods" "GET, OPTIONS, POST";

     本文轉自西鼠 51CTO部落格,原文連結:http://blog.51cto.com/10630401/1944449,如需轉載請自行聯系原作者