為您解碼網(wǎng)站建設(shè)的點(diǎn)點(diǎn)滴滴
發(fā)表日期:2017-04 文章編輯:小燈 瀏覽次數(shù):2349
使用ssl模塊配置同時(shí)支持http和https并存
一,生成證書
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地址 會(huì)跳轉(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)在工作了)
日期:2018-04 瀏覽次數(shù):6846
日期:2017-02 瀏覽次數(shù):3514
日期:2017-09 瀏覽次數(shù):3757
日期:2017-12 瀏覽次數(shù):3599
日期:2018-12 瀏覽次數(shù):4911
日期:2016-12 瀏覽次數(shù):4669
日期:2017-07 瀏覽次數(shù):13714
日期:2017-12 瀏覽次數(shù):3591
日期:2018-06 瀏覽次數(shù):4339
日期:2018-05 瀏覽次數(shù):4521
日期:2017-12 瀏覽次數(shù):3628
日期:2017-06 瀏覽次數(shù):4055
日期:2018-01 瀏覽次數(shù):4024
日期:2016-12 瀏覽次數(shù):3981
日期:2018-08 瀏覽次數(shù):4493
日期:2017-12 瀏覽次數(shù):3800
日期:2016-09 瀏覽次數(shù):6559
日期:2018-07 瀏覽次數(shù):3281
日期:2016-12 瀏覽次數(shù):3300
日期:2018-10 瀏覽次數(shù):3451
日期:2018-10 瀏覽次數(shù):3558
日期:2018-09 瀏覽次數(shù):3648
日期:2018-02 瀏覽次數(shù):3676
日期:2015-05 瀏覽次數(shù):3596
日期:2018-09 瀏覽次數(shù):3380
日期:2018-06 瀏覽次數(shù):3505
日期:2017-02 瀏覽次數(shù):3942
日期:2018-02 瀏覽次數(shù):4409
日期:2018-02 瀏覽次數(shù):4278
日期:2016-12 瀏覽次數(shù):3643
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.