美文网首页
nginx+tomcat+https部署记录

nginx+tomcat+https部署记录

作者: codeMan_6616 | 来源:发表于2017-08-18 14:27 被阅读110次

1.环境说明

win7 64位系统
nginx-1.9.4
apache-tomcat-7.0.63

2.openssl生成证书

#key的生成 
openssl genrsa -des3 -out server.key 2048 
#生成没有密码的key
openssl rsa -in server.key -out server.key
#生成CA的crt
openssl req -new -x509 -key server.key -out server.crt -days 3650 

3.修改配置

nginx.conf

    upstream tomcat {
        server 127.0.0.1:8080 fail_timeout=0;
    }

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

        ssl_certificate      E:\wcp-web\server.crt;
        ssl_certificate_key  E:\wcp-web\server.key;

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


        location / {
            root   html;
            index  index.html index.htm;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header Host $http_host;
            proxy_set_header X-Forwarded-Proto https;
            proxy_redirect off;
            proxy_connect_timeout      240;
            proxy_send_timeout         240;
            proxy_read_timeout         240;
            # note, there is not SSL here! plain HTTP is used
            proxy_pass http://tomcat;
        }
    }

tomcat,server.xml

    <Connector port="8080" protocol="HTTP/1.1"  connectionTimeout="20000"  redirectPort="443" proxyPort="443" />

    <Host name="localhost"  appBase="webapps" unpackWARs="true" autoDeploy="true">    
        <Valve className="org.apache.catalina.valves.RemoteIpValve"
              remoteIpHeader="x-forwarded-for"
              remoteIpProxiesHeader="x-forwarded-by"
              protocolHeader="x-forwarded-proto"/>
    
        <Context path="" reloadable="false" docBase="E:\wcp-web" workDir="E:\wcp-web"/>
    </Host>

4.启动

启动tomcat
    startup.bat
启动Nginx
    cmd
    cd D:\nginx-1.9.4
    D:\nginx-1.9.4>nginx
停止Nginx
    D:\nginx-1.9.4>nginx -s stop

5.访问

https://localhost/

6.备注

windows下 nginx 配置ssl的key是不能存储密码的,否则启动时会提示输入密码 
输入后也启动不起来,会报错: 
2011/04/18 09:49:09 [alert] 1992#4548: the event "ngx_master_1992" was 
not signaled for 5s 

解决方案是将密码刨掉,用法: 
openssl rsa -in server.key -out server.key

相关文章

  • nginx+tomcat+https部署记录

    1.环境说明 2.openssl生成证书 3.修改配置 nginx.conf tomcat,server.xml ...

  • Nginx+Tomcat+HTTPS

    tomcat配置HTTPS Tomcat只支持JKS, PKCS11 和 PKCS12格式的keystores。J...

  • ELK安装

    记录一下ELK部署过程 一、部署ElasticSearch 下载解压ElasticSearch 1.部署maste...

  • 2022-04-07

    jenkins安装部署记录 docker方式部署: docker pull jenkins/jenkins 报错f...

  • docker 常用部署Demo

    在此记录常用Docker 部署项目的几个Demo ,学习总结,同时方便后期提高部署项目速度。 Docker 部署 ...

  • kubernetes集群搭建十一:测试

    部署应用 执行 查看 验证 错误记录

  • hive2.1.1部署记录

    参考了网上很多的文档,终于部署成功,记录下来方便大家本文衔接《hadoop2.7.3部署记录》http://www...

  • Mac OS 使用virtualenv部署python tens

    Tensorflow部署 Tensorflow这么强大,直到今天我才开始尝试使用,记录在mac上部署Tensorf...

  • Spring Boot 热部署

    SpringBoot 在开发时通常会用到热部署,记录网址以便查阅 springboot热部署方法

  • Walle部署记录

    利用walle发布项目流程: 1.设定一个宿主主机用于拉取git或svn 2.目标发布主机 3.git配置项目,本...

网友评论

      本文标题:nginx+tomcat+https部署记录

      本文链接:https://www.haomeiwen.com/subject/lllarxtx.html