nginx https 썸네일형 리스트형 NGINX에서 가상 호스트에 HTTP2를 설정하는 방법 NGINX에서 가상 호스트(Virtual Host)에 HTTP/2를 설정하는 방법NGINX 버전 확인nginx -v1. http2 on; 방식이 지시문은 버전 1.25.1에 나타났습니다.#default.conf configureserver { listen 80 default_server; server_name _; return 301 https://$host$request_uri;}#Settings for a TLS enabled server.server { listen 443 ssl; http2 on; server_name _; root /usr/share/nginx/html; index index.html index.htm;...}2. listen 443 s.. 더보기 Nginx HTTP Server Note Nginx HTTP Server 1. 작업환경 준비하기 http://ohgyun.com/477 2. 설치 http://ohgyun.com/478 3. 환경설정 http://ohgyun.com/479 4. HTTP 환경설정 http://ohgyun.com/480 5. 모듈 환경설정 http://ohgyun.com/481 6. 참고/주의 http://ohgyun.com/487 원본URL - 꿀벌개발일지 http://ohgyun.com 더보기 이전 1 다음