nginx 와 Apache 통합

1212 단어 apache.nginx통합
1.   nginx 프 록 시 프로필 이름 을 proxy. conf 로 만 듭 니 다. (conf 에 파일 을 저장 할 프로필 을 예 로 들 면)
proxy_redirect          off;
proxy_set_header        Host $host;
proxy_set_header        X-Real-IP $remote_addr;  #    ip
#proxy_set_header       X-Forwarded-For   $proxy_add_x_forwarded_for; #        ip
client_max_body_size    10m;
client_body_buffer_size 128k;
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;

 2. 아파 치 서비스 설정 수정
1.          (     nginx     ,   Apache     :9000)
    :
 Listen 9000

2.      Apache          (    nginx       )
    : /var/www/        
 DocumentRoot "/var/www/html"
3.   nginx 서비스 설정 수정 (nginx. conf 파일)
1.       nginx      
    :
      location / {
            root   /var/www/html; //     
            index  index.html index.htm index.php index.jsp; //       
        }

2.     php     Apache  (    Apache       )  
location ~ \.php$ {
            proxy_pass   http://127.0.0.1:9000; //        
            include proxy.conf; //          
        }

좋은 웹페이지 즐겨찾기