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
I've been researching some things about linke...
environment: 1. CentOS6.5 X64 2.mysql-5.6.34-linu...
This is a cheating scheme for voting websites wit...
Web front end 1 Student ID Name gender age 01 Zha...
First: Installation of MySQL Download the MySQL s...
Every website usually encounters many non-search ...
Method 1: Install the plugin via npm 1. Install n...
Table of contents 1. Reasons for index failure 2....
1. Introduction Are you still leaving your websit...
A. Installation of MySQL backup tool xtrabackup 1...
“How to make a website look high-end? Or more des...
What is a table? It is composed of cell cells. In...
Binlog is a binary log file that is used to recor...
For several reasons (including curiosity), I star...
Table of contents Generate random numbers Generat...