묻고답하기

인증서를 발급받아서 nginx에 연동을 했는데


문제가 한가지 생겼습니다.


파이어폭스나 크롬에서는 연동된것이 제대로 동작하고 에러가 뜨지 않는데 비해


유독 익스에서는 인증서가 꼬여서 제대로 인식을 못하고 있네요.


https://web5.entertm.net

https://starhive.net

https://help.entertm.net


현재 3개 도메인의 SSL을 설정한 상태인데


왜 익스에서 인식이 제대로 안되는지 모르겠네요.


아래는 설정 내역입니다.


------------------------------------------


# You may add here your
# server {
#    ...
# }
# statements for each of your virtual hosts

server {
        listen 443;
        server_name web5.entertm.net;

        ssl on;
        ssl_certificate         /var/www/web5entertm.crt;
        ssl_certificate_key     /var/www/web5entertm.key;

        ssl_session_timeout 10m;

        ssl_protocols   SSLv2 SSLv3 TLSv1;
        ssl_ciphers     HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers       on;

        location / {
                proxy_set_header        X-Real-IP       $remote_addr;
                proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header        Host    web5.entertm.net;
                proxy_pass http://web5.entertm.net;
        }
        }

server {
    listen 443;
    server_name starhive.net;
   
    ssl on;
    ssl_certificate        /var/www/starhivenet.cert;
    ssl_certificate_key    /var/www/starhivenet.key;

    ssl_session_timeout 10m;

    ssl_protocols    SSLv2 SSLv3 TLSv1;
    ssl_ciphers    HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers    on;

    location / {
                proxy_set_header        X-Real-IP       $remote_addr;
                proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header        Host    starhive.net;
                proxy_pass http://starhive.net;
        }
    }

server {
        listen 443;
        server_name help.entertm.net;

        ssl on;
        ssl_certificate         /var/www/helpentertmnet.crt;
        ssl_certificate_key     /var/www/helpentertmnet.key;

        ssl_session_timeout 10m;

        ssl_protocols   SSLv2 SSLv3 TLSv1;
        ssl_ciphers     HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers       on;

        location / {
                proxy_set_header        X-Real-IP       $remote_addr;
                proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header        Host    help.entertm.net;
                proxy_pass http://help.entertm.net;
        }
        }

server {
        listen 443;
        server_name main.emulpia.com;

        ssl on;
        ssl_certificate         /var/www/emulpia-www2.cert;
        ssl_certificate_key     /var/www/emulpia-www2.key;

        ssl_session_timeout 10m;

        ssl_protocols   SSLv2 SSLv3 TLSv1;
        ssl_ciphers     HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers       on;

        location / {
                proxy_set_header        X-Real-IP       $remote_addr;
                proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header        Host    www2.emulpia.tk;
                proxy_pass http://www2.emulpia.tk;
        }
}

server {
    server_name www2.emulpia.tk;
    listen 80;
    location / {
        proxy_set_header        X-Real-IP       $remote_addr;
                proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header        Host    www2.emulpia.tk;
                proxy_pass http://www2.emulpia.tk;
    }

}

server {
        server_name starhive.net;
        listen 80;
        location / {
                proxy_set_header        X-Real-IP       $remote_addr;
                proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header        Host    starhive.net;
                proxy_pass http://starhive.net;
        }

}

server {
        server_name web5.entertm.net;
        listen 80;
        location / {
                proxy_set_header        X-Real-IP       $remote_addr;
                proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header        Host    web5.entertm.net;
                proxy_pass http://web5.entertm.net;
        }

}

server {
        server_name help.entertm.net;
        listen 80;
        location / {
                proxy_set_header        X-Real-IP       $remote_addr;
                proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header        Host    help.entertm.net;
                proxy_pass http://help.entertm.net;
        }

}

server {

    listen 443;
    server_name www2.emulpia.tk;
   
    ssl on;
    ssl_certificate        /var/www/emulpia-www2.cert;
    ssl_certificate_key    /var/www/emulpia-www2.key;

    ssl_session_timeout 10m;

    ssl_protocols    SSLv2 SSLv3 TLSv1;
    ssl_ciphers    HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers    on;

    location / {
                proxy_set_header        X-Real-IP       $remote_addr;
                proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header        Host    www2.emulpia.tk;
                proxy_pass http://www2.emulpia.tk;
        }

}

#server {

#    server_name ssl.entertm.net;

#    listen 80;

#    location / {
#        root    /var/www/ssl;
#    }

#    location /main {
#        proxy_redirect off;

#        rewrite /s /main break;
#        proxy_set_header    X-Real-IP    $remote_addr;
#        proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;
#        proxy_set_header    Host    www2.emulpia.tk;
#        proxy_pass http://www2.emulpia.tk/s/;

#        include /var/www/ssl/main/xe.conf;
#    }

#}

server {

    listen   80; ## listen for ipv4
    listen   [::]:80 default ipv6only=on; ## listen for ipv6

    server_name  localhost;

    access_log  /var/log/nginx/localhost.access.log;

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

    location /doc {
        root   /usr/share;
        autoindex on;
        allow 127.0.0.1;
        deny all;
    }

    location /images {
        root   /usr/share;
        autoindex on;
    }

    #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   /var/www/nginx-default;
    #}

    # 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$ {
        #fastcgi_pass   127.0.0.1:9000;
        #fastcgi_index  index.php;
        #fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #includefastcgi_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;
#server_name  localhost;

#ssl  on;
#ssl_certificate  cert.pem;
#ssl_certificate_key  cert.key;

#ssl_session_timeout  5m;

#ssl_protocols  SSLv3 TLSv1;
#ssl_ciphers  ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP;
#ssl_prefer_server_ciphers   on;

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

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
나잔보자 GNB 에 대한 LNB 인식 [1] file 2012.11.22 by 송동우
나잔보자 lnb가...전부 다나와버려요;;; file  
돌칸 수정하는 부분에서 에러 발생에 대하여 알고 싶어서...  
쿠쿠팍 스케치북5 방명록형에서요.. [1] file 2012.11.13 by 송동우
가브리엘조 자체서버 소셜로그인 기능, http 500에러  
다섯손가락 에디터에 관리자 멘트 넣기 관련 문의 file  
땡땡이별나라 xe guestbook 상단에 이름 변경하는거요. [1] file 2012.10.23 by 송동우
boo26 재테크 재테크'정통 재테크 99.9 권장 재테크 재테크  
SMP 1.4 사용중인데 사이트가 완전히 죽어버렸습니다 ㅜㅜ [1] 2012.10.01 by 송동우
롱아 위젯형 페이지에 게시판 넣는 방법? 알려주세요ㅠㅠ file  
까칠닷컴 이미지 올릴 경우 게시판이 이미지 사이즈에 맞게 늘어 납니다. [1] file 2012.09.28 by 송동우
하은이아빠 쪽기 알람 애드온 수정 [1] 2012.09.27 by 송동우
참치찌개 팝업 메뉴 출력 [1] file 2012.09.26 by 송동우
꾸링 일부 회원의 스크랩 표시 오류  
EnterTM SSL + nginx 작업중인데 문제가 한가지 있어 질문드립니다. [1] 2012.09.15 by 푸시아
말궁뎅이 xe core 1.4 -> 1.5 로 쉬운설치로 업데이트하다가... [2] 2012.09.14 by 송동우
바카라QPR1000.COM 추천바ㅋㅏ라 WWW.QPR1000.COM 바ㅋㅏ라게임방법 WWW.QPR1000.COM 1억출금 WWW.QPR1000.COM file  
천민수 로그인이 안되는 문제가 있습니다. file  
wnpdl 고수님들~~ 한번만 더 도와주세요~ ㅠㅜ [1] file 2012.09.04 by wnpdl
QydQNd XE Core ver. 1.5.3.1.1hotfix 로 업데이트 하는데 안되네요.. ㅜ_-