当前位置:   article > 正文

云服务器部署之后前端HTTP请求转HTTPS请求和加入SSL证书后服务器部署失败_本地请求带有ssl证书的接口可以但是部署到服务器上不行

本地请求带有ssl证书的接口可以但是部署到服务器上不行

前端HTTP请求转HTTPS请求

    由于有了域名加上使用了SSL证书后仅接收HTTPS的请求,尤其是微信小程序上线时必须发送HTTPS的请求而

docker中前后端容器端口配置截图

在这里插入图片描述

在SpringBoot中创建以下配置类

package cn.hncj.serve.config;

import org.apache.catalina.Context;
import org.apache.catalina.connector.Connector;
import org.apache.tomcat.util.descriptor.web.SecurityCollection;
import org.apache.tomcat.util.descriptor.web.SecurityConstraint;
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class HttpsConfig {

    /**
     * http 转 https
     */
    @Bean
    public Connector connector() {
        Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");
        connector.setScheme("http");
        // 监听的http端口
        connector.setPort(80);
        connector.setSecure(false);
        // 监听到http端口后跳转的https端口
        connector.setRedirectPort(443);
        return connector;
    }

    /**
     * 拦截所有的请求
     */
    @Bean
    public TomcatServletWebServerFactory tomcatServletWebServerFactory(Connector connector) {
        TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory() {
            @Override
            protected void postProcessContext(Context context) {
                SecurityConstraint securityConstraint = new SecurityConstraint();
                securityConstraint.setUserConstraint("CONFIDENTIAL");
                SecurityCollection collection = new SecurityCollection();
                collection.addPattern("/*");
                securityConstraint.addCollection(collection);
                context.addConstraint(securityConstraint);
            }
        };
        tomcat.addAdditionalTomcatConnectors(connector);
        return tomcat;
    }

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50

注意在SpringBoot中的pom文件中加入以下配置

    为的是防止在打包时过滤掉配置文件,尤其是.pfx后缀的SSL证书,如果该文件不以正确的方式打开该文件就会失效

  <resources>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.yml</include>
                    <include>**/*.xml</include>
                    <include>1.pfx</include>
                </includes>
                <filtering>false</filtering>
            </resource>
  <resources>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

在yam中加入以下对SSL证书的配置

  ssl:
    #证书路径
    key-store: classpath:证书名字加后缀
    #证书密码
    key-store-password:证书密码,可在购买的代理商查询

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小桥流水78/article/detail/1011423
推荐阅读
相关标签
  

闽ICP备14008679号