nginx 아 리 클 라 우 드 서버 ssl 인증서 (https) 설정 파일

4083 단어 nginx
우선, 당신 은 아 리 클 라 우 드 서버 홈 페이지 배경 - 보안 (클 라 우 드 방패) - ssl 인증서 에 ssl 인증 서 를 신청 해 야 합 니 다. 저 는 무료 DV SSL 을 신청 합 니 다. 심 사 를 통과 한 후에 nginx 인증 서 를 다운로드 한 다음 에 다운 로드 된 인증 서 를 서버 의 nginx 설치 디 렉 터 리 에 놓 습 니 다. (저 는 nginx 폴 더 에 ssl Cert 디 렉 터 리 를 새로 만 들 었 고 인증 서 를 ssl Cert 디 렉 터 리 에 넣 었 습 니 다)인증 서 를 놓 은 후 nginx 프로필 의 443 감청 을 놓 으 십시오. 프로필 코드 는 다음 과 같 습 니 다.
#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;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;


    upstream taoke {
        server 127.0.0.1:8686;    #            ,     ip
    }

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
	
	#taoke by ZL
	location ~ ^/taoke/ {
            proxy_set_header HOST $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header Client-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_pass http://taoke;
        }	

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    server {
        listen       443 ssl;
        server_name  localhost;

        ssl_certificate    ../sslCert/taoke.pem;
        ssl_certificate_key ../sslCert/taoke.key;

        ssl_session_cache    shared:SSL:1m;
        ssl_session_timeout  10m;

        ssl_ciphers  HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }

	#taoke by ZL
        location ~ ^/taoke/ {
            proxy_set_header HOST $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header Client-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_pass http://taoke;
        }

    }

}

그리고 nginx 프로필 이 올 바른 지 확인 하 십시오:
/usr/local/nginx/sbin/nginx -t

정확 하지 않 으 면 알림 에 따라 설정 파일 을 수정 하고 정확 한 후에 nginx 서 비 스 를 다시 시작 합 니 다.
/usr/local/nginx/sbin/nginx -s reload

 
 
배 움 에는 끝 이 없고, 끊임없이 배운다.

좋은 웹페이지 즐겨찾기