Nginx 도 메 인 이름 전송

3109 단어 LinuxNginx
Nginx 도 메 인 이름 전송 설정
  • Nginx 도 메 인 이름 전송 설정
  • Nginx 소개
  • Nginx 설치
  • Nginx 상용 명령
  • 도 메 인 이름 퍼 가기 설정


  • Nginx 소개
    Nginx (engine x) 는 러시아의 프로그래머 Igor Sysoev 가 개발 한 고성능 웹 과 리 버스 프 록 시 서버 이자 IMAP / POP 3 / SMTP 프 록 시 서버 다.높 은 연결 과 병행 하 는 상황 에서 Nginx 는 Apache 서버 의 좋 은 대체 품 이다.
    Nginx 설치
    1. 컴 파일 도구 및 라 이브 러 리 설치
    yum -y install make zlib zlib-devel gcc-c++ libtool  openssl openssl-devel

    2. PCRE 설치
             
    cd     
    ./configure 
    make && make install//    

    3. Nginx 설치
             
    cd     
    ./configure
    make
    make install

    Nginx 상용 명령
    ### nginx/sbin     ###
    
    ##   nginx
    ./nginx
    
    ##   nginx
    ./nginx -s stop
    
    ##         
    ./nginx -s reload
    

    도 메 인 이름 전송 설정
    다음은 제 프로필 입 니 다. 저 는 간단 한 도 메 인 이름 퍼 가기 기능 만 설 치 했 을 뿐 다른 nginx 기능 을 사용 하지 않 았 습 니 다. nginx 는 매우 강하 고 도 메 인 이름 퍼 가기 는 빙산 의 일각 일 뿐 입 니 다.
    ## nginx/conf/nginx.conf
    
    worker_processes  1;
    
    events {
        worker_connections  1024;
    }
    
    
    http {
        include       mime.types;
        default_type  application/octet-stream;
    
        sendfile        on;
    
        server {
            listen       80;
            server_name www.fbm.com;
            location / {
                root   html;
                index  index.html index.htm;
                proxy_pass http://localhost:8080;
            }
        }
        server {
            listen 80;
            server_name fmp.hzfh.com;
            location / {
                proxy_pass http://fmp.hzfh.com; 
            }
        }
    }
    

    주: 방화벽 에 포트 를 여 는 것 을 잊 지 마 세 요.

    좋은 웹페이지 즐겨찾기