1. Installation Install using yum ##Automatically install yum nginx ##Start nginx 2. SSL and default port configuration Pan-analysis configuration 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; } 3. Common commands ##Reload configuration nginx -s reload ##Stop service nginx -s stop The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to generate Hive table creation statement comment script in MySQL metadata
>>: Specific use of useRef in React
Table of contents What is a plugin Writing plugin...
(1) Introduction: clipboard.js is a lightweight J...
Preface The database has always been my weak poin...
When troubleshooting system problems, application...
Table of contents process Demo Mini Program Backe...
Table of contents Preface What to use if not jQue...
Record the installation and configuration method ...
This method was edited on February 7, 2021. The v...
Table of contents How to represent the current ti...
Background: Linux server file upload and download...
Elasticsearch is very popular now, and many compa...
Table of contents environment Install CentOS Conf...
Hexo binds a custom domain name to GitHub under W...
Ubuntu 20.04 has been released, bringing many new...
Table of contents Preface 1.v-show 2.v-if 3. The ...