当我将 nginx 放在 Tomcat 前面时,如何修复 net::ERR_SSL_PROTOCOL_ERROR 错误?

当我将 nginx 放在 Tomcat 前面时,如何修复 net::ERR_SSL_PROTOCOL_ERROR 错误?

当我将 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;
       }
    }

}

在对到达端口 8331 和 8332 的所有请求应用 ssl 之后,我编写了一个重定向到 tomcat 端口 8330 的代码。

但是问题是如果这样通过nginx去访问8330的话GET https://serverIP:8330/itf/subscribe net::ERR_SSL_PROTOCOL_ERROR会出错。

当 nginx 不存在时,/itf/subscribe 正常工作。

但是在https地址内部调用的时候好像有问题。

我想知道如何解决这个问题。

此致!

答案1

根据您的 nginx 配置,端口 8330 由您的上游服务器 (Tomcat) 处理。如果您尚未将 Tomcat 配置为使用 SSL,则当您使用 URL 连接到它时将收到 SSL 错误https

根据您的配置,您需要连接到https://example.com:8332/以使用 SSL。这将连接到为 SSL 配置的 nginx 端口,然后 nginx 将请求代理到 Tomcat 服务器。

答案2

我遇到了同样的错误。

首先,当我使用 SSL 访问我的 IP/域时,我看到了我的路由器的登录页面。这是因为它也在端口 443 上提供自己的网页。

我的解决方案是将端口 443 从任何地址转发到我的服务器 IP:443(端口转发规则已添加到我的路由器)。

Source: *   Port: 443   TO    Destination: server-IP   Port: 443

这解决了我的问题。

相关内容