当前位置:   article > 正文

linux安装nginx详细的步骤 开始Nginx的SSL模块 配置Http和Https共存_linux nginx t如何放置http 资源

linux nginx t如何放置http 资源

1.安装依赖包

yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel

2.下载并解压安装包

下载地址 请选择需要的版本如:http://nginx.org/download/nginx-1.18.0.tar.gz

  1. cd /usr/local//下载tar包
  2. tar -xvf nginx-1.18.0.tar.gz

3.安装nginx

进入nginx目录(/usr/local 此次是自行选择的解压后目录)

cd /usr/local/nginx-1.18.0

4.编译 make&make install

SSL模块 请使用

./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module

不使用 SSL模块请使用

--prefix=/usr/local/nginx --with-http_stub_status_module

配置完成后,运行命令

  1. make
  2. make install

三、配置(编辑配置文件)

vi /usr/local/nginx/conf/nginx.conf

普通前端页面配置 

  1. server {
  2. listen 81;
  3. server_name 127.0.0.1; #服务端地址
  4. location / {
  5. root html;
  6. index index.html index.htm;
  7. }
  8. }

Https证书配置及转发前端页面

  1. server {
  2. listen 443 ssl;
  3. server_name www.****.net;
  4. ssl_certificate 5437721_www.****.net.pem;
  5. ssl_certificate_key 5437721_www.****.net.key;
  6. ssl_session_cache shared:SSL:1m;
  7. ssl_session_timeout 5m;
  8. ssl_ciphers HIGH:!aNULL:!MD5;
  9. ssl_prefer_server_ciphers on;
  10. location / {
  11. proxy_pass http://127.0.0.1:81;
  12. proxy_redirect off;
  13. }
  14. }

转发后台配置

  1. location ~ ^/(VehcApply/Add|VehcApply/Pass|User/)$ {
  2. proxy_pass http://127.0.0.1:18763;
  3. proxy_connect_timeout 5s;
  4. proxy_redirect off;
  5. #proxy_read_timeout 20s;
  6. client_max_body_size 100m;#文件上传大小限制
  7. proxy_send_timeout 5s;
  8. # 传递真实IP到后竿 proxy_set_header Host $host:$server_port;
  9. proxy_set_header X-Real-IP $remote_addr;
  10. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  11. }

四、启动

  1. # 检查配置文件
  2. /usr/local/nginx/sbin/nginx -t
  3. #启动
  4. /usr/local/nginx/sbin/nginx
  5. # 重启加载配置
  6. /usr/local/nginx/sbin/nginx -s reload

五、验证
访问 *****:81 (外网请开端口)

 注意:./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module   Https的关键

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

闽ICP备14008679号