主頁(yè) > 知識(shí)庫(kù) > Nginx配置同一個(gè)域名同時(shí)支持http與https兩種方式訪問(wèn)實(shí)現(xiàn)

Nginx配置同一個(gè)域名同時(shí)支持http與https兩種方式訪問(wèn)實(shí)現(xiàn)

熱門標(biāo)簽:ai電銷機(jī)器人 如何開發(fā) 山東400電話如何辦理 電話機(jī)器人服務(wù)差 蘭州語(yǔ)音電銷機(jī)器人軟件 濟(jì)源電話外呼系統(tǒng)怎么樣 高德地圖標(biāo)注在建線路 宿州防封外呼系統(tǒng)廠家 智能外呼系統(tǒng)如何部署 電銷機(jī)器人對(duì)公司貢獻(xiàn)

Nginx配置同一個(gè)域名http與https兩種方式都可訪問(wèn),證書是阿里云上免費(fèi)申請(qǐng)的

server
{
listen 80;
listen 443 ssl;
ssl on;
server_name 域名;
index index.html index.htm index.php default.html default.htm default.php;
ssl_certificate /usr/local/nginx/cert/21402058063066221.pem; //下載申請(qǐng)后阿里ssh提供的pem
ssl_certificate_key /usr/local/nginx/cert/21402058063066221.key;//下載申請(qǐng)后阿里ssh提供的key
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;

 
root /home/wwwroot/網(wǎng)站目錄;

include laravel.conf; //好吧,這里是laravel配置,不一定合適您哈,請(qǐng)或略
#error_page 404 /404.html;
include enable-php.conf;

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}

location ~ .*\.(js|css)?$
{
expires 12h;
}

access_log /home/wwwlogs/airclass.mime.org.cn.log;
}

關(guān)鍵在于上面的listen 80;

listen 443 ssl; 開啟80端口

當(dāng)然,這樣玩就沒有啥意義了,既然是https,就完全沒必要http傳輸數(shù)據(jù)啦.我們必須把所有http請(qǐng)求轉(zhuǎn)發(fā)到https,

把http重定向到https使用了nginx的重定向命令。那么應(yīng)該如何寫重定向?之前老版本的nginx可能使用了以下類似的格式。
也就是再添加一個(gè)虛擬機(jī)server,80端口一個(gè)

server {
listen 80;
server_name www.domain.com;
rewrite ^/(.*) https://$server_name$1 permanent; #跳轉(zhuǎn)到Https
}

重寫依舊不同版本可能如下

rewrite ^/(.*)$ https://domain.com/$1 permanent;

或者

rewrite ^ https://domain.com$request_uri? permanent;

現(xiàn)在nginx新版本已經(jīng)換了種寫法,上面這些已經(jīng)不再推薦?,F(xiàn)在網(wǎng)上可能還有很多文章寫的是第一種。

下面是nginx http頁(yè)面重定向到https頁(yè)面最新支持的寫法:

server {
listen  80;
server_name domain.com;
return  301 https://$server_name$request_uri;
}

server {
listen  443 ssl;
server_name domain.com;

}

但是我的nginx/1.10.0好像跑不起來(lái),也許不支持這種寫法吧...

下面是基于http轉(zhuǎn)https的完整配置:

server
{
#listen 80;
listen 443;
ssl on;
server_name domain.com; //你的域名
index index.html index.htm index.php default.html default.htm default.php;
ssl_certificate /usr/local/nginx/cert/user.medsci-tech.com/214020580630662.pem;
ssl_certificate_key /usr/local/nginx/cert/user.medsci-tech.com/214020580630662.key;
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;

root /home/wwwroot/web/public;//項(xiàng)目根目錄

include laravel.conf;
#error_page 404 /404.html;
include enable-php.conf;

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}

location ~ .*\.(js|css)?$
{
expires 12h;
}

}
server {
listen 80;
server_name domain.com;
rewrite ^/(.*) https://$server_name$request_uri? permanent;
}

到此這篇關(guān)于Nginx配置同一個(gè)域名同時(shí)支持http與https兩種方式訪問(wèn)實(shí)現(xiàn)的文章就介紹到這了,更多相關(guān)Nginx同域名同時(shí)支持http與https內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

標(biāo)簽:安陽(yáng) 晉中 畢節(jié) 衡水 佛山 南寧 云南 巴中

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Nginx配置同一個(gè)域名同時(shí)支持http與https兩種方式訪問(wèn)實(shí)現(xiàn)》,本文關(guān)鍵詞  Nginx,配置,同一個(gè),域名,;如發(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)。
  • 相關(guān)文章
  • 下面列出與本文章《Nginx配置同一個(gè)域名同時(shí)支持http與https兩種方式訪問(wèn)實(shí)現(xiàn)》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Nginx配置同一個(gè)域名同時(shí)支持http與https兩種方式訪問(wèn)實(shí)現(xiàn)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章