性久久久久久,性色av浪潮av色欲av,国产日韩精品在线观看,亚洲色成人网一二三区

歡迎您光臨深圳塔燈網(wǎng)絡(luò)科技有限公司!
電話圖標(biāo) 余先生:13699882642

網(wǎng)站百科

為您解碼網(wǎng)站建設(shè)的點(diǎn)點(diǎn)滴滴

Ngnix.SSL

發(fā)表日期:2017-04 文章編輯:小燈 瀏覽次數(shù):2323

使用ssl模塊配置同時(shí)支持http和https并存
一,生成證書

1、首先,進(jìn)入你想創(chuàng)建證書和私鑰的目錄,例如:cd /etc/nginx/# 2、創(chuàng)建服務(wù)器私鑰,命令會讓你輸入一個(gè)口令:openssl genrsa -des3 -out server.key 1024# 3、創(chuàng)建簽名請求的證書(CSR):openssl req -new -key server.key -out server.csr# 4、在加載SSL支持的Nginx并使用上述私鑰時(shí)除去必須的口令:cp server.key server.key.orgopenssl rsa -in server.key.org -out server.key# 5、最后標(biāo)記證書使用上述私鑰和CSR:openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

二,配置nginx
cd /etc/nginxvim nginx.conf## HTTPS server configuration#server { listen 443; server_name 本機(jī)的IP地址; ssl on; ssl_certificate /etc/nginx/server.crt; ssl_certificate_key /etc/nginx/server.key; ssl_session_timeout 5m;# ssl_protocols SSLv2 SSLv3 TLSv1;# ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;# ssl_prefer_server_ciphers on; location / { #root html; #index testssl.html index.html index.htm; proxy_redirect off; 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_pass http://IP地址/ssl/; }}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

重啟nginx,在瀏覽器輸入:https://IP地址 會跳轉(zhuǎn)到 http://IP地址/ssl/ 這個(gè)地址(后期調(diào)整為webservice接口地址即可)
三、受瀏覽器信任的StartSSL免費(fèi)SSL證書:
跟VeriSign一樣,StartSSL(網(wǎng)址:http://www.startssl.com,公司名:StartCom)也是一家CA機(jī)構(gòu),
它的根證書很 久之前就被一些具有開源背景的瀏覽器支持(Firefox瀏覽器、谷歌Chrome瀏覽器、蘋果Safari瀏覽器等)。
四、項(xiàng)目需要,將訪問目錄 \services\ 由http訪問 重定向到 https (解決方法:nginx rewrite 加上 location 方式實(shí)現(xiàn))
location ~ /services/.$ { if ($server_port ~ "^80$"){ set $rule_0 1$rule_0; } if ($rule_0 = "1"){ rewrite /(.) https://IP地址/$1 permanent; break; } }
1
2
3
4
5
6
7
8

1
2
3
4
5
6
7
8

五,配置結(jié)束上傳以后用nginx -t 測試下配置無誤 就reload一下nginx服務(wù) 檢查443端口是否在監(jiān)聽
/usr/local/nginx/sbin/nginx -tnginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful (顯示表示配置文件沒有錯(cuò)誤)service nginx reload (重新加載nginx服務(wù)) netstat -lan | grep 443 (查看443端口) tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN (有看到這一行 就表示HTTPS已經(jīng)在工作了)


本頁內(nèi)容由塔燈網(wǎng)絡(luò)科技有限公司通過網(wǎng)絡(luò)收集編輯所得,所有資料僅供用戶學(xué)習(xí)參考,本站不擁有所有權(quán),如您認(rèn)為本網(wǎng)頁中由涉嫌抄襲的內(nèi)容,請及時(shí)與我們聯(lián)系,并提供相關(guān)證據(jù),工作人員會在5工作日內(nèi)聯(lián)系您,一經(jīng)查實(shí),本站立刻刪除侵權(quán)內(nèi)容。本文鏈接:http://caipiao93.cn/20386.html
相關(guān)開發(fā)語言
 八年  行業(yè)經(jīng)驗(yàn)

多一份參考,總有益處

聯(lián)系深圳網(wǎng)站公司塔燈網(wǎng)絡(luò),免費(fèi)獲得網(wǎng)站建設(shè)方案及報(bào)價(jià)

咨詢相關(guān)問題或預(yù)約面談,可以通過以下方式與我們聯(lián)系

業(yè)務(wù)熱線:余經(jīng)理:13699882642

Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.