簡體   English   中英

當我將 nginx 放在 Tomcat 前面時,如何解決 net::ERR_SSL_PROTOCOL_ERROR 錯誤?

[英]How do I solve net::ERR_SSL_PROTOCOL_ERROR error when I put nginx in front of Tomcat?

當我將 nginx 放在 Tomcat 前面時,如何修復 net::ERR_SSL_PROTOCOL_ERROR 錯誤?


#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;

    upstream tomcat {
        server 127.0.0.1:8330;
    }

    charset utf-8;



    #gzip on;

    server {
        listen 8331;
        server_name localhost;

        # return 301 https://$host$request_uri;
        #charset koi8-r;

        #access_log logs/host.access.log main;

        location / {
            # root html;
            # index index.html index.htm;
            # proxy_pass http://sgmng.pluggolf.com;

            proxy_set_header Host $http_host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto $scheme;
            proxy_set_header X-NginX-Proxy true;

            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection "Upgrade";
            proxy_set_header Origin "";
            # new

            # Copy the upstream path set above
            proxy_pass https://tomcat;
            # proxy_redirect off;
            charset utf-8;
        }

        #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;
        }

        # 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 8080;
    # listen somename:8080;
    # server_name somename alias another.alias;

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


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

       charset utf-8;

       ssl_certificate D:/service/cbdc_dt/nginx/cert/plusity.crt;
       ssl_certificate_key D:/service/cbdc_dt/nginx/cert/plusity.key;

    # ssl_session_cache shared:SSL:1m;
    # ssl_session_timeout 5m;

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

       location / {
        # root html;
        # index index.html index.htm;
        proxy_pass http://tomcat;

        proxy_set_header Host $http_host;
        proxy_set_header X-Real_IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            # proxy_set_header X-Forwarded-Proto $scheme;
            # proxy_set_header X-NginX-Proxy true;

        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection '';
        proxy_set_header Origin "";
        proxy_http_version 1.1;
        chunked_transfer_encoding off;

        proxy_buffering off;
        proxy_cache off;
        proxy_read_timeout 7d;
        proxy_redirect off;
        charset utf-8;
       }
    }

}

在將 ssl 應用到所有到達端口 8331 和 8332 的請求之后,如下所示,我編寫了一個重定向到 tomcat 的端口 8330 的代碼。

但是,問題是如果你像這樣通過nginx go 到 8330, GET https://serverIP:8330/itf/subscribe net::ERR_SSL_PROTOCOL_ERROR出現錯誤。

/itf/subscribe 在 nginx 不存在時正常工作。

但是從https的地址內調用時似乎有問題。

我想知道如何解決這個問題。

此致!

但是,問題是,如果你像這樣通過 nginx go 到 8330 , GET https://serverIP:8_SSL_0:ERC 錯誤發生。

端口 8330 由 Tomcat 服務,而不是 Nginx。 因此協議錯誤。 您目前有 Nginx 正在監聽:

  • http://localhost:8331 -> http://127.0.0.1:8330
  • https://localhost:8332 -> http://127.0.0.1:8330

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM