일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Kibana server is not ready yet
- 로그인불가
- macos
- 한글가이드
- ssh key 배포
- ansible
- freebsd
- G-suite
- miniconda
- centos 8
- pfsense
- elastic stack
- proxycfg
- xe guest utilities
- 보안양파
- application security
- Kibana
- x-pack
- GitLab
- docker
- hardening
- Elasticsearch
- Proxy
- Windows
- bash
- XCP-ng
- ELASTIC
- PlayBook
- endpoint security
- Today
- Total
선 밖에 선 자유인
nginx 컴파일 옵션 본문
컴파일 옵션 예시
출처: https://gist.github.com/envi/5523460
./configure \
--prefix=/usr/local/stow/nginx \
--conf-path=/etc/nginx/nginx.conf \
--sbin-path=/usr/sbin \
--http-log-path=/var/log/nginx/access.log \
--error-log-path=/var/log/nginx/error.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--http-client-body-temp-path=/var/lib/nginx/body \
--http-proxy-temp-path=/var/lib/nginx/proxy \
--http-fastcgi-temp-path=/var/tmp/nginx/fastcgi_temp \
--http-uwsgi-temp-path=/var/tmp/nginx/fastcgi_temp \
--http-scgi-temp-path=/var/tmp/nginx/fastcgi_temp \
--with-ipv6 \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_image_filter_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_gzip_static_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_spdy_module \
--with-md5-asm \
--with-sha1-asm \
--with-openssl=/usr/src/openssl-1.0.1 \
--with-sha1=/usr/lib \
--user=www-data \
--group=www-data
make
make install
* ubuntu 에서 ssl 설정시에는 libssl-dev를 설치한 후 컴파일 옵션에서 --with-openssl 을 제외한다.