日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

目錄
  • 一、證書申請
  • 二、配置SSL
    • 2.1 證書上傳
    • 2.2 Server配置
    • 2.3 配置轉發
  • 三、配置問題
    • 3.1 ngx_http_ssl_module
    • 3.2 ERR_SSL_PROTOCOL_ERROR
  • 四、配置示例
    • 4.1 SSL完整配置

一、證書申請

  • 申請SSL證書,申請之后會有兩個文件提供下載(注意下載nginx版本),阿里云有免費的SSL證書申請
    • xxx.key
    • xxx.pem
  • nginx安裝版本使用的是1.16.1

二、配置SSL

2.1 證書上傳

  • 在nginx的安裝目錄下創建cert(別的名字也可以)
  • 將下載的SSL證書文件上傳到cert下

CentOS環境下Nginx配置SSL證書實現https請求詳解

2.2 Server配置

  • 進入到nginx下的conf文件夾下打開nginx.conf文件
  • 取消https server的注釋
# HTTPS server
server {
    listen       443 ssl;
    server_name  localhost;
    ssl_certificate      cert.pem;
    ssl_certificate_key  cert.key;
    ssl_session_cache    shared:SSL:1m;
    ssl_session_timeout  5m;
    ssl_ciphers  HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers  on;
    location / {
        root   html;
        index  index.html index.htm;
    }
}
  • 需要配置一下說明的內容
# HTTPS server
server {
    # 注意這里就是443 ssl, 不要把ssl刪除了
    listen       443 ssl;
    # 把localhost替換為SSL綁定的域名, 如www.codecoord.com
    # server_name  localhost;
    server_name  www.codecoord.com;
    # 添加默認主目錄和首頁, 根據自己的路徑修改
    root /opt/nginx/html;
    index index.html;
    # cert.pem和cert.key替換為上傳文件的路徑(最好使用完整路徑)
    # ssl_certificate      cert.pem;
    # ssl_certificate_key  cert.key;
    ssl_certificate      /opt/nginx/cert/cert.pem;
    ssl_certificate_key  /opt/nginx/cert/cert.key;
    # 下面的不用動
    ssl_session_cache    shared:SSL:1m;
    ssl_session_timeout  5m;
    ssl_ciphers  HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers  on;
    location / {
        root   html;
        index  index.html index.htm;
    }
}
  • 注意443端口需要在開啟外網訪問(比如阿里云服務器需要在控制臺配置安全組, 不過默認是打開的)

2.3 配置轉發

  • 這一步是配置對外訪問端口和將http請求強制轉為https
  • 刪除多余配置,只需要留下以下配置
server {
    # 監聽端口
    listen       80;
    # 改為自己的域名
    server_name  www.codecoord.com;
    # 將http請求強制轉為https
    # rewrite:重寫指令,$host$:請求地址,$1:請求參數,permanent:永久訪問
    rewrite ^(.*)$ https://$host$1 permanent;
}

上述兩步配置完成后測試一下是否配置正確,在sbin目錄下運行測試命令

  • ./nginx -t
# 配置成功信息
[root@TianXin sbin]# ./nginx -t
nginx: the configuration file /opt/Nginx/conf/nginx.conf syntax is ok
nginx: configuration file /opt/Nginx/conf/nginx.conf test is successful
  • 如果測試成功則重啟nginx,使配置生效
[root@TianXin sbin]# ./nginx -s reload
  • 完整配置參考第四點配置示例
  • 配置完成后訪問域名,即可顯示https信息

CentOS環境下Nginx配置SSL證書實現https請求詳解

三、配置問題

3.1 ngx_http_ssl_module

  • 注意如果是nginx 1.16.1之前版本, 配置內容會有有所變化,請參考別的版本配置
  • 如果運行./nginx -t時出現以下錯誤,標識nginx沒有安裝SSL模塊
[root@tianxin conf]# nginx -t
nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module in /opt/nginx/conf/nginx.conf:112
nginx: configuration file /opt/nginx/conf/nginx.conf test failed
  • 解決方法是重新配置nginx,重新編譯帶上–with-http_stub_status_module –with-http_ssl_module
  • 可以重新安裝nginx(建議, 可以避免很多問題)也可以不用重新安裝, 不用重新安裝只需要執行下面的兩個命令即可
# 清除編譯文件
make clean
# 配置
./configure --prefix=/opt/nginx --with-http_stub_status_module --with-http_ssl_module
# 編譯
make
  • 不要執行make install 否則會覆蓋原來的文件
  • 關閉nginx
    • nginx -s stop
  • 拷貝目錄下的objs/nginx替換之前的nginx啟動文件
    • cp objs/nginx /opt/nginx/sbin/
  • 最后啟動nginx即可

3.2 ERR_SSL_PROTOCOL_ERROR

  • 此問題在該版本中出現是因為listen配置的時候把443 后面的ssl刪除了導致這個錯誤
server {
    # 注意這里就是443 ssl, 不要把ssl刪除了,之前的版本
    listen       443 ssl;
    ...
}
  • 解決方法就是不要把443后面的ssl漏了,注意中間有空格

四、配置示例

4.1 SSL完整配置

#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;
    sendfile        on;
    keepalive_timeout  65;
    server {
        listen       80;
        server_name  www.codecoord.com codecoord.com;
        rewrite ^(.*)$ https://$host$1 permanent;
    }
    # https
    server {
        # 注意這里就是443 ssl, 不要把ssl刪除
        listen       443 ssl;
        # 替換為SSL綁定的域名, 如www.codecoord.com
        server_name  www.codecoord.com;
        # 添加默認主目錄和首頁, 根據自己的路徑修改
        root /opt/nginx/html;
        index index.html;
        # cert.pem和cert.key替換為上傳文件的路徑
        ssl_certificate      /opt/nginx/cert/www.codecoord.com.pem;
        ssl_certificate_key  /opt/nginx/cert/www.codecoord.com.key;
        # 下面的不用動
        ssl_session_cache    shared:SSL:1m;
        ssl_session_timeout  5m;
        ssl_ciphers  HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers  on;
        location / {
            root   html;
            index  index.html index.htm;
            try_files $uri $uri/ /index.html;   # 解決vue頁面刷新404問題
        }
    }
}

以上就是Nginx實戰-配置SSL證書(CentOS環境),實現https請求的詳細內容,更多關于Nginx配置SSL實現https請求的資料請關注其它相關文章!

分享到:
標簽:環境 證書 詳解 請求 配置
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定