Nginx + Undertow 实现HTTPS访问

因为是小程序开发,所以需要实现HTTPS访问,但是在这之前基本没有接触过Nginx和Undertow,所以我在使用起来特别的不孙畅,一直没有实现https,

如下是undertow的配置:

# 配置 undertow

undertow.devMode=true

undertow.host=127.0.0.1

undertow.port=8443

# 开启 gzip 压缩

undertow.gzip.enable=true

# 配置压缩级别,默认值 -1。 可配置 1 到 9。 1 拥有最快压缩速度,9 拥有最高压缩率

undertow.gzip.level=-1

# 触发压缩的最小内容长度

undertow.gzip.minLength=1024

#session

undertow.session.timeout=1800

undertow.session.hotSwap=true

# 是否开启 ssl

undertow.ssl.enable=false

# ssl 监听端口号,部署环境设置为 443

#undertow.ssl.port=8443

# 密钥库类型,建议使用 PKCS12

#undertow.ssl.keyStoreType=PKCS12

# 密钥库文件

#undertow.ssl.keyStore=2470890_laolun.laurent-falcon.com.pfx

# 密钥库密码

#undertow.ssl.keyStorePassword=ScJKhmhs

# ssl 开启时,是否开启 http2。检测该配置是否生效在 chrome 地址栏中输入: chrome://net-internals/#http2

undertow.http2.enable=false

# ssl 开启时,http 请求是否重定向到 https

# undertow.http.toHttps=false

# ssl 开启时,是否关闭 http

# undertow.http.disable=false


这里是Nginx conf的配置:

worker_processes  1;

events {

    worker_connections  1024;

}

http {

    include       mime.types;

    default_type  application/octet-stream;

    sendfile        on;

    keepalive_timeout  65;

    server {

        listen       8080;

        server_name  laolun.laurent-falcon.com;

        location / {

            proxy_pass http://127.0.0.1:8081;

        }

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

    }

    # HTTPS server

    #

    server {

        listen       443;

        server_name  laolun.laurent-falcon.com;

        ssl on;

        #root html;

        #index index.html index.htm;

        ssl_certificate   cert/2470890_laolun.laurent-falcon.com.pem;

        ssl_certificate_key  cert/2470890_laolun.laurent-falcon.com.key;

        ssl_session_timeout 5m;

        ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;

        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

        ssl_prefer_server_ciphers on;

        location / {

            proxy_pass https://127.0.0.1:8443;

            #root html;

            #index index.html index.htm;

        }

    }

}

请问大神,哪里有误嘛?

8443和443端口都是开通了

评论区

JFinal

2019-07-12 16:40

proxy_pass https://127.0.0.1:8443 这个配置错了,要改成:
proxy_pass http://127.0.0.1:8443;

注意上面是 http , 而不是 https

此外,端口号不要改成 8443,一般保持为 8080 就好 , 因为在 jfinal undertow 这头就是 http , 改成 8443 不符合惯例, 让人以为是 https

JFinal

2019-07-12 16:43

如果你这台服务器的 nginx 并没有别的作用, 直接在 jfinal undertow 之上配置 SSL 即可, nginx 做代理主要有两个作用:
1:一台服务器上部署多个 web 项目,便于多个项目共享同一个端口号
2:nginx 接管 html、js、jpg、png、 css 等静态资源性能更高,资源占用低

而你的 nginx 貌似没有配置代理上述这些 web 静态资源

热门反馈

扫码入社