Bootstrap

nginx反向代理配置(nginx.conf+proxy_set_header)

公司最近有一些反向代理的需求,需要将nginx部署在互联网DMZ区。

之前只有利用nginx做过简单的web服务器,并未真正在生产环境上使用反向代理。

本公司生产环境目前配置如下:

[root@szweb01 conf]# cat nginx.conf
user  root;
worker_processes  4;
error_log  logs/error.log;
error_log  logs/error.log  notice;
error_log  logs/error.log  info;
pid        logs/nginx.pid;
events {
    worker_connections  1024;
}
http {
    include       mime.types;
    default_type  application/octet-stream;
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    access_log  logs/access.log  main;
    sendfile        on;
    #tcp_nopush     on;
    keepalive_timeout  120;
    #gzip  on;

;