Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Detailed explanation of Nginx installation and SSL configuration and common commands under Centos7.x

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

一、安装

采用yum方式安装

##自动安装yum nginx##启动nginx

二、SSL及默认端口配置

泛解析配置

server{ listen 443; server_name *.banacoo.cn; ssl on; ssl_certificate /etc/nginx/conf.d/1_banacoo.cn_bundle.crt; ssl_certificate_key /etc/nginx/conf.d/2_banacoo.cn.key; gzip on; gzip_buffers 16 8k; gzip_comp_level 6; gzip_min_length 200; gzip_types text/css text/xml application/javascript text/javascript application/x-javascript text/plan image/jpeg image/png image/gif; location /room/static { alias /home/room/; } location /statics { alias /home/quanyou/; } location / { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto https; if ($request_method = 'OPTIONS') { add_header 'Access-Control-Allow-Credentials' true; add_header 'Access-Control-Allow-Origin' "$http_origin"; add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range'; add_header 'Access-Control-Max-Age' 1728000; return 204; } if ($host ~ ^(uatapi)\.banacoo\.cn$){ proxy_pass http://127.0.0.1:8033; } if ($host ~ ^(uatapp)\.banacoo\.cn$){ proxy_pass http://127.0.0.1:8022; } if ($host ~ ^(uatai)\.banacoo\.cn$){ proxy_pass http://127.0.0.1:8011; } if ($host ~ ^(uatui)\.banacoo\.cn$){ proxy_pass http://127.0.0.1:9080; } if ($host ~ ^(uatmarket)\.banacoo\.cn$){ proxy_pass http://127.0.0.1:8088; } if ($host ~ ^(uatmarketui)\.banacoo\.cn$){ proxy_pass http://127.0.0.1:9089; } if ($host ~ ^(uateasyjoy)\.banacoo\.cn$){ proxy_pass http://127.0.0.1:8036; } } access_log logs/banacoo.cn.access.log;}server{ listen 80; server_name uatmarketui.banacoo.cn; charset utf-8; gzip on; gzip_buffers 16 8k; gzip_comp_level 6; gzip_min_length 200; gzip_types text/css text/xml application/javascript text/javascript application/x-javascript text/plan image/jpeg image/png image/gif; location / { proxy_pass http://127.0.0.1:9089; } autoindex on; autoindex_exact_size off; autoindex_localtime on; access_log logs/uatmarketui.banacoo.cn.access.log;}server{ listen 80; server_name uatmarket.banacoo.cn; charset utf-8; gzip on; gzip_buffers 16 8k; gzip_comp_level 6; gzip_min_length 200; gzip_types text/css text/xml application/javascript text/javascript application/x-javascript text/plan image/jpeg image/png image/gif; location / { proxy_pass http://127.0.0.1:8088; } autoindex on; autoindex_exact_size off; autoindex_localtime on; access_log logs/uatmarket.banacoo.cn.access.log;}

三、常用命令

##重新加载配置nginx -s reload##停止服务nginx -s stop

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report