Notice
Recent Posts
Recent Comments
Link
목록gzip (1)
SeouliteLab
nginx 프록시(proxy), gzip, ssl, 로드벨런싱(load balancing) 설정
nginx.conf 파일 수정 #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; #access_log logs/access.log main; sendfile on; keepalive_timeout 65; #gzip 설정 gzip on; gzip_disable "msie6"; gzip_vary on;gzip_min_leng..
프로그래밍
2018. 4. 30. 15:09