人妖在线一区,国产日韩欧美一区二区综合在线,国产啪精品视频网站免费,欧美内射深插日本少妇

新聞動(dòng)態(tài)

Centos7.x下Nginx安裝及SSL配置與常用命令詳解

發(fā)布日期:2022-03-15 08:14 | 文章來(lái)源:源碼之家

一、安裝

采用yum方式安裝

##自動(dòng)安裝
yum nginx
##啟動(dòng)
nginx

二、SSL及默認(rèn)端口配置

泛解析配置

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
##停止服務(wù)
nginx -s stop

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持本站。

版權(quán)聲明:本站文章來(lái)源標(biāo)注為YINGSOO的內(nèi)容版權(quán)均為本站所有,歡迎引用、轉(zhuǎn)載,請(qǐng)保持原文完整并注明來(lái)源及原文鏈接。禁止復(fù)制或仿造本網(wǎng)站,禁止在非www.sddonglingsh.com所屬的服務(wù)器上建立鏡像,否則將依法追究法律責(zé)任。本站部分內(nèi)容來(lái)源于網(wǎng)友推薦、互聯(lián)網(wǎng)收集整理而來(lái),僅供學(xué)習(xí)參考,不代表本站立場(chǎng),如有內(nèi)容涉嫌侵權(quán),請(qǐng)聯(lián)系alex-e#qq.com處理。

相關(guān)文章

實(shí)時(shí)開(kāi)通

自選配置、實(shí)時(shí)開(kāi)通

免備案

全球線(xiàn)路精選!

全天候客戶(hù)服務(wù)

7x24全年不間斷在線(xiàn)

專(zhuān)屬顧問(wèn)服務(wù)

1對(duì)1客戶(hù)咨詢(xún)顧問(wèn)

在線(xiàn)
客服

在線(xiàn)客服:7*24小時(shí)在線(xiàn)

客服
熱線(xiàn)

400-630-3752
7*24小時(shí)客服服務(wù)熱線(xiàn)

關(guān)注
微信

關(guān)注官方微信
頂部