參考: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
在http段加入:🎠 # listen 80;
listen 443;
server_name YourServerName;
index.htm;
ssl on;
ssl_certificate /etc/nginx/server.crt; nginx/server_nopwd.key;
}
重啟niginx
以上就介紹了ubuntu利用nginx配置https伺服器,包含了方面的內容,希望對PHP教學有興趣的朋友有幫助。