当前位置:   article > 正文

NGINX编译启用SSL_nginx编译ssl

nginx编译ssl

nginx ./configure命令

ngixn默认的./configure命令是不带ssl模块的,需要手动指定–with-http_ssl_module

./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
  • 1

执行make && make install 命令

make &&make install
  • 1

修改nginx.conf文件

# /usr/local/nginx/conf/nginx.conf
# 修改用户为root,在配置文件nginx.conf的第一行
user  root;
worker_processes  1;

...
# 配置443端口ssl
server {
        listen       443 ssl;
        #域名
        server_name  mes.fotile.com.cn;
		# ssl证书的路径(相对路径)
        ssl_certificate      ssl/fotile.com.cn.crt;
        ssl_certificate_key  ssl/fotile.com.cn.key;

        ssl_session_cache    shared:SSL:60m;
        ssl_session_timeout  60m;
        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        #ssl_ciphers  HIGH:!aNULL:!MD5;
        ssl_ciphers ECDHE-RSA-AES256-SHA384:AES256-SHA256:RC4:HIGH:!MD5:!aNULL:!eNULL:!NULL:!DH:!EDH:!AESGCM;
        ssl_prefer_server_ciphers  on;

        location / {
            root   html;
            index  index.html index.htm;
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27

运行nginx

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/639983
推荐阅读
相关标签
  

闽ICP备14008679号