首頁 >後端開發 >php教程 >ubuntu利用nginx配置https伺服器

ubuntu利用nginx配置https伺服器

WBOY
WBOY原創
2016-07-29 09:04:411112瀏覽

參考:http://www.cnblogs.com/yanghuahui/archive/2012/06/25/2561568.html
http://www.linuxidc.com/Linux/2011-11/47477.htm

http: //blog.csdn.net/sean_cd/article/details/38738599


nginx -V
查看nginx 的ssl配置有沒有–with-http_ssl_module。如果沒有發現–with-http_ssl_module這個編譯參數,表示不支援。 Nginx預設是不支援SSL的,需要加入–with-http_ssl_module參數重新編譯。
apt-get install openssl
cd /etc/nginx/
建立伺服器私鑰,指令會讓你輸入一個口令:
openssl genrsa -des3 -out server.key 1024
建立簽章要求的憑證(CSR)
s
-new -key server.key -out server.csr
在載入SSL支援的Nginx並使用上述私鑰時除去必須的口令:
openssl rsa -in server.key -out server_nopwd.key

最後標記憑證使用上述私鑰與CSR
openssl x509 -req -days 365 -in server.csr -signkey server_nopwd.key -out server.crtvi /etc/nginx/nginx.conf


在http段加入:🎠 # listen   80;
        listen 443;
        server_name  YourServerName;
  index.htm;
        ssl on;
        ssl_certificate  /etc/nginx/server.crt; nginx/server_nopwd.key;
}

重啟niginx

service nginx restart

在/var/mypagedir放入網頁文件,訪問驗證是否成功

以上就介紹了ubuntu利用nginx配置https伺服器,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn