Nginx HTTP反向代理基础配置

Posted 南下玩技术笔记

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx HTTP反向代理基础配置相关的知识,希望对你有一定的参考价值。

#user  nobody;
worker_processes  1;

#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;   
    sendfile        on;   
    keepalive_timeout  65;
	
    upstream apachephp {
        server 要代理的ip:要代理的端口;
    }

    server {
        listen 8888;
        server_name  localhost;    
        root   html;
        index  index.html index.htm index.php;
        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            proxy_pass  http://apachephp;     
            #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;        
        }
    }        
}

  

以上是关于Nginx HTTP反向代理基础配置的主要内容,如果未能解决你的问题,请参考以下文章

Nginx基础07:反向代理配置

nginx 基础3 反向代理

Nginx入门与基础之反向代理配置介绍

Nginx HTTP负载均衡和反向代理配置

Nginx入门基础篇

Nginx基础入门