您好,登錄后才能下訂單哦!
使用ssl模塊配置同時(shí)支持http和https并存
一,生成證書
# 1、首先,進(jìn)入你想創(chuàng)建證書和私鑰的目錄,例如: cd /etc/nginx/ # 2、創(chuàng)建服務(wù)器私鑰,命令會(huì)讓你輸入一個(gè)口令: openssl genrsa -des3 -out server.key 1024 # 3、創(chuàng)建簽名請(qǐng)求的證書(CSR): openssl req -new -key server.key -out server.csr # 4、在加載SSL支持的Nginx并使用上述私鑰時(shí)除去必須的口令: cp server.key server.key.org openssl 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
二,配置nginx
cd /etc/nginx vim 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/; } }
重啟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; } }
五,配置結(jié)束上傳以后用nginx -t 測(cè)試下配置無誤 就reload一下nginx服務(wù) 檢查443端口是否在監(jiān)聽
/usr/local/nginx/sbin/nginx -t nginx: 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)在工作了)
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。