先备份prefix安装路径的文件夹
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --add-module=/mnt/soft/fastdfs/fastdfs-nginx-module-master/src
make && make install
cd /usr/local/nginx/conf 上传
www.域名.com_bundle.crt
www.域名.com.key
这两个文件
cp nginx.conf nginx.confdefault
vim nginx.conf
?? ?server { ? ? ? ? #SSL 访问端口号为 443 ? ? ? ? listen 443 ssl; ? ? ? ? #填写绑定证书的域名 ? ? ? ? server_name www.域名.com; ? ? ? ? #证书文件名称 ? ? ? ? ssl_certificate www.域名.com_bundle.crt; ? ? ? ? #私钥文件名称 ? ? ? ? ssl_certificate_key www.域名.com.key; ? ? ? ? ssl_session_timeout 5m; ? ? ? ? #请按照以下协议配置 ? ? ? ? ssl_protocols TLSv1.2 TLSv1.3; ? ? ? ? #请按照以下套件配置,配置加密套件,写法遵循 openssl 标准。 ? ? ? ? ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE; ? ? ? ? ssl_prefer_server_ciphers on; ? ? ? ? location / { ? ? ? ? ? ?#网站主页路径。此路径仅供参考,具体请您按照实际目录操作。 ? ? ? ? ? ?#例如,您的网站运行目录在/etc/www下,则填写/etc/www。 ? ? ? ? ? ? root html; ? ? ? ? ? ? index ?index.html index.htm; ? ? ? ? } ? ? }
cd /usr/local/nginx/sbin
./nginx -s reload
|