• Nginx安装配置项目部署然后加SSL


    个人操作笔记记录

    第一步:把 nginx 的源码包nginx-1.8.0.tar.gz上传到 linux 系统

    第二步:解压缩

    tar zxvf nginx-1.8.0.tar.gz

    第三步:进入nginx-1.8.0目录   使用 configure 命令创建一 makeFile 文件。

    直接复制过去运行

    ./configure \

    --prefix=/usr/local/nginx \

    --pid-path=/var/run/nginx/nginx.pid \

    --lock-path=/var/lock/nginx.lock \

    --error-log-path=/var/log/nginx/error.log \

    --http-log-path=/var/log/nginx/access.log \

    --with-http_gzip_static_module \

    --http-client-body-temp-path=/var/temp/nginx/client \

    --http-proxy-temp-path=/var/temp/nginx/proxy \

    --http-fastcgi-temp-path=/var/temp/nginx/fastcgi \

    --http-uwsgi-temp-path=/var/temp/nginx/uwsgi \

    --http-scgi-temp-path=/var/temp/nginx/scgi \

    --with-http_stub_status_module --with-http_ssl_module

    第四步:编译

    make

    第五步:安装

    make install

    注意:启动nginx 之前,上边将临时文件目录指定为/var/temp/nginx/client, 需要在/var  下创建此 目录

    mkdir /var/temp/nginx/client -p

    进入到Nginx目录下的sbin目录

    cd /usr/local/ngiux/sbin

    输入命令启动Nginx

    ./nginx

    启动后查看进程

    ps aux|grep nginx

    ./nginx 启动

    ./nginx -s stop 停止 非正常退出

    ./nginx -s quit 正常退出

    ./nginx  -s reload 重新加载

    接下来我启动了两个应用:

    应用1:端口号为8081

    应用2:端口号为8082

    Nginx配置域名转发

    1. upstream tomcat-travel{
    2. server 服务器ip127.0.0.1:8081;
    3. }
    4. upstream tomcat-travel2{
    5. server 服务器ip127.0.0.1:8082;
    6. }
    7. server {
    8. listen 80;
    9. server_name www.域名1.com;#如www.baidu.com
    10. location / {
    11. #root html;
    12. proxy_pass http://tomcat-travel;
    13. index index.html index.htm;
    14. }
    15. error_page 500 502 503 504 /50x.html;
    16. location = /50x.html {
    17. root html;
    18. }
    19. }
    20. server {
    21. listen 80;
    22. server_name 域名2;#如www.baidu.com
    23. server_name hnyfsh.com;
    24. location / {
    25. #root html;
    26. proxy_pass http://tomcat-travel2;
    27. index index.html index.htm;
    28. }
    29. error_page 500 502 503 504 /50x.html;
    30. location = /50x.html {
    31. root html;
    32. }
    33. }

    NginxSSL

    1. server {
    2. listen 443 ssl;
    3. server_name www.域名.cn;
    4. ssl_certificate /opt/java/ssl/自己的.cn.pem;
    5. ssl_certificate_key /opt/java/ssl/自己的.cn.key;
    6. ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
    7. ssl_session_cache shared:SSL:10m;
    8. ssl_session_timeout 10m;
    9. location / {
    10. proxy_pass http://tomcat-travel2;
    11. proxy_set_header Host $host;
    12. proxy_set_header X-Real-IP $remote_addr;
    13. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    14. }
    15. }

  • 相关阅读:
    Java数据结构—队列
    现代 CSS 高阶技巧,完美的波浪进度条效果。
    某男子因用本地虚拟机做压测,惨遭字节面试官当场嘲笑
    C语言中volatile/register/const/static/extern/auto关键字的作用
    Cesium快速上手7-3dtiles加载
    ML or DL
    数据结构-难点突破(C++实现树的双亲表示法,孩子表示法,孩子兄弟表示法(树转化为二叉树))
    Kotlin进阶之——拓展对集合的妙用
    [贪心算法]java解决背包问题
    智能无感验证实战案例:神州优车
  • 原文地址:https://blog.csdn.net/zengzhaowu313/article/details/133990755