您好,登錄后才能下訂單哦!
nginx中如何配置ssl證書,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
一,申請ssl證書
我用的是騰訊暈的免費的ssl證書,申請成功后可以將證書下載下來,這是我下載解壓后的文件,然后把它
二,上傳ssl證書并配置
選nginx文件夾里面的兩個文件,然后通過xftp軟件或其他方式上傳到nginx的目錄下,我選擇了conf文件的那個目錄
弄好之后開始配置conf里面的內容,一下是我的配置,我用的是nginx的1.18的版本,據說老的版本有些不一樣,這里給一個參考鏈接https://cloud.tencent.com/document/product/400/35244
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server { listen 443 default_server ssl ; server_name www.tiantianboke.com; ssl_certificate 1_www.tiantianboke.com_bundle.crt; ssl_certificate_key 2_www.tiantianboke.com.key; ssl_session_cache shared:SSL:1m; ssl_session_timeout 5m; #禁止在header中出現服務器版本,防止黑客利用版本漏洞攻擊 server_tokens off; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; } location /api { proxy_pass http://127.0.0.1:5000; } } }
三,檢查nginx配置文件
配置并且保存完之后,使用nginx -t命令來檢查配置內容是否正常,如果出現
nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:xxx,
這個時候就需要配置了,首先停止nginx運行
然后
find name configure
查找所configure在目錄
然后進入到nginx-1.18.0的目錄,執行
./configure --prefix=/usr/local/nginx --with-http_ssl_module //加上http模塊的ssl支持
然后執行
make
進行構建,不要執行make install
然后
cp objs/nginx /usr/local/nginx/sbin 覆蓋之前的二進制文件。
以上操作完成執行nginx -t就會看到配置文件沒有問題了,
然后重啟nginx,瀏覽網站
(如果你訪問的網站的頁面有http請求的話,那么url地址欄就會提示不安全,你要想辦法把他的http地址換為https)
但是我配置完成之后就發現我的頁面有問題了,signalr(服務端推送消息到客戶端)這個js出現了跨域問題,然后我百度到的解決辦法就是
配置一下內容
location /chatHub { proxy_pass http://127.0.0.1:5000; proxy_http_version 1.1; #如果沒有這句,會產生409錯誤 proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; }
關于nginx中如何配置ssl證書問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。