Nginx HTTPS 서버 구축

810 단어
Nginx HTTPS 서버 구축
먼저 OpenSSL 을 설치 하고 사용 합 니 다.
# openssl

설치 성공 여부 테스트
# cd /usr/local/nginx/conf
# openssl genrsa -des3 -out server.key 1024
# openssl req -new -key server.key -out server.csr
# openssl rsa -in server.key -out server_nopwd.key
# openssl x509 -req -days 365 -in server.csr -signkey server_nopwd.key -out server.crt

서버 설정
server {
    listen 443;
    ssl on;
    ssl_certificate  /usr/local/nginx/conf/server.crt;
    ssl_certificate_key  /usr/local/nginx/conf/server_nopwd.key;

    location /your_path {
        root /your/root/directory;
        index index.html index.htm;
    }
}

레 퍼 런 스
http://www.cnblogs.com/tintin1926/archive/2012/07/12/2587311.html
http://www.heyuan110.com/?p=1285

좋은 웹페이지 즐겨찾기