lemp --------2ssl加密 模拟自签发

Posted 奥特最帅

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lemp --------2ssl加密 模拟自签发相关的知识,希望对你有一定的参考价值。

 openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout ssl.pem -out ssl.pem

vi /etc/nginx/nginx.conf

server {
listen 443 ssl;
server_name localhost;

ssl_certificate /usr/local/nginx/ssl.pem;
ssl_certificate_key /usr/local/nginx/ssl.pem;

ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;

ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;

location / {
root /web2;
index index.html index.htm;
}
}

 

 

 

chmod +x ssl.pem 

systemctl restart nginx.service

 

测试

以上是关于lemp --------2ssl加密 模拟自签发的主要内容,如果未能解决你的问题,请参考以下文章

sh Scaleway Letsencrypt LEMP

如何在 Debian 9 下安装 LEMP 和 WHMCS 7.5

LEMP平台全编译搭建

如何在Ubuntu16.04 中安装Linux, Nginx, MySQL, PHP (LEMP 栈)

docker-compose:无法从我的 LEMP 堆栈访问 phpMyAdmin

在 Ubuntu 16.04 上安装 LEMP 环境之图文向导