nginx 기본 조작 명령 및 설정

2983 단어 nginx
nginx 기본 동작 명령:
nginx 서비스 시작: start nginx
nginx 서비스 정지: nginx - s stop
서비스 재 부팅 (설정 변경 에 적용 되 는 방식): nginx - s reload
설정 검사: nginx - t
역방향 프 록 시 설정:
location ^~ /login/ {
     
            proxy_pass  http://ip:8080/gwmro/mobileService/login/;
            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;
            proxy_set_header X-Forwarded-Proto $scheme;

}

gzip 압축 설정:
 gzip on;
 gzip_static on;    
 gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
 gzip_proxied  any;
 gzip_vary on;
 gzip_comp_level 6;
 gzip_buffers 16 8k;
 gzip_http_version 1.1;  

총결산
매일 조금씩 기록 해, 작은 새 에서 작은 새 로!!

좋은 웹페이지 즐겨찾기