Nginx 에 SPDY 기능 추가
1. Openssl 1.0.1e 또는 더 높 은 버 전 2. 사이트 에 SSL 인증서 3. Nginx 1.6 stable 또는 1.5 Development 가 설치 되 어 있 습 니 다. 먼저 Openssl 버 전 을 검사 합 니 다.
CentOS 6 은 다음 명령 을 사용 할 수 있 습 니 다.
[root@do ~]# rpm -q openssl
openssl-1.0.1e-16.el6_5.14.i686
CentOS 6 에 내 장 된 Openssl 이 이미 요 구 를 충족 시 켰 음 을 알 수 있 습 니 다. CentOS 5 라면 Ubuntu 를 수 동 으로 업그레이드 해 야 합 니 다. 데 비 안과 다른 발행 판 은 다음 명령 으로 버 전 을 검사 할 수 있 습 니 다.
[root@do ~]# openssl version
OpenSSL 1.0.1e-fips 11 Feb 2013
Nginx 버 전 검사 하기 다음 명령 으로 Nginx 버 전 검사 하기
[root@do ~]# nginx -v
nginx version: nginx/1.6.0
Nginx 에 SPDY 가 포함 되 어 있 는 지 아래 명령 으로 확인 합 니 다.
[root@do ~]# nginx -V |grep spdy
nginx version: nginx/1.6.0
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC)
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6 --with-http_spdy_module --with-cc-opt='-O2 -g -pipe -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables'
C with - http 을 보면spdy_모듈 은 요 구 를 충족 시 켰 다 는 것 을 설명 한다.만약 요 구 를 만족 시 키 지 못 했다 면, 가세 요.http://nginx.org/ 다운로드 설치 1.6 stable
Nginx 의 SPDY 지원 을 엽 니 다. Nginx 에 SSL 지원 이 설정 되 어 있다 고 가정 하면 SPDY 를 열 면 다음 SSL 설정 이 매우 간단 합 니 다.
listen [::]:443 ssl;
listen 443 ssl;
... 로 바꾸다
listen [::]:443 ssl spdy;
listen 443 ssl spdy;
그리고 Nginx 서 비 스 를 다시 시작 합 니 다. 큰 성 과 를 거두다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.