最新消息:重新回归WordPress,我要比较认真的开始更新我的博客了。

Nginx返向代理企业内网网站

服务器相关 hanlei 1729浏览

企业网络一般都会有固定IP,但运营商不会给开放80端口,企业内网的网站在外网是没办法正常访问的,除非改端口。今天学习到Nginx的返向代理,可以解单解决这个问题。nginx反向代理可以把内网或其它网络的任意端口下的WEB服务通过返向代理正常暴露在外网。

Nginx反向代理的配置文件如下

server {
    listen 80;
    server_name  域名;
    access_log  logs/quancha.access.log  main;
    error_log  logs/quancha.error.log;
    root   html;
    index  index.html index.htm index.php;
     ## send request back to apache ##
    location / {
        proxy_pass  http://IP地址:端口;
        #Proxy Settings
        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;
        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;
   }
}

 

转载请注明:HANLEI'BLOG » Nginx返向代理企业内网网站