一、安裝
采用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í)有所幫助,也希望大家多多支持腳本之家。
標(biāo)簽:廈門 內(nèi)江 湖北 玉樹 江門 泰安 瀘州 江西
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Centos7.x下Nginx安裝及SSL配置與常用命令詳解》,本文關(guān)鍵詞 Centos7.x,下,Nginx,安裝,及,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。