快速配置反向代理
[root@linux-node1 ~]# wget -O /etc/yum.repos.d/epel.repo [root@linux-node1 ~]# http://mirrors.aliyun.com/repo/epel-6.repo yum install -y nginx [root@linux-node1 ~]# cat /etc/nginx/conf.d/test.conf upstream test.kaixin001.com { server 127.0.0.1:8500; } server { listen 80; server_name test.kaixin001.com; index index.html index.htm; root /date/wwwroot/linuxtone/; location ~ ^/NginxStatus/ { stub_status on; access_log off; } location / { root /date/wwwroot/linuxtone/; proxy_redirect off ; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header REMOTE-HOST $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 60; proxy_buffer_size 256k; proxy_buffers 4 256k; proxy_busy_buffers_size 256k; proxy_temp_file_write_size 256k; proxy_next_upstream error timeout invalid_header http_500 http_503 http_404; proxy_max_temp_file_size 128m; proxy_pass http://test.kaixin001.com; } }