• nginx配置相关问题


    1. nginx配置ssl相关问题

    1.1 报错nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module in /qqc_pack/nginx-1.1.10/conf/nginx.conf:30

    切换到nginx源码包位置:
    [root@localhost sbin]# /usr/local/nginx/sbin/nginx -V
    nginx version: nginx/1.1.10
    configure arguments:
    注:configure中没有 http_ssl_module,现在将http_ssl_module加进去
    
    切换到nginx解压的目录:
    [root@localhost /]# cd qqc_pack/nginx-1.1.10
    [root@localhost nginx-1.1.10]# ls
    auto  CHANGES  CHANGES.ru  conf  configure  contrib  html  LICENSE  Makefile  man  objs  README  src
    # 有configure执行下面操作:
    [root@localhost nginx-1.1.10]# ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
    [root@localhost nginx-1.1.10]#make
    
    对原来的nginx备份:
    [root@localhost nginx-1.1.10]# cp /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.bak
    
    然后将刚刚编译好的nginx覆盖掉原有的nginx:
    [root@localhost nginx-1.1.10]# cp ./objs/nginx /usr/local/nginx/sbin/
    cp:是否覆盖"/usr/local/nginx/sbin/nginx"? y
    
    检查:
    [root@localhost nginx-1.1.10]# /usr/local/nginx/sbin/nginx -V
    nginx version: nginx/1.1.10
    TLS SNI support enabled
    configure arguments: --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
    
    注:http_ssl_module已加进来
    
  • 相关阅读:
    apache伪静态设置
    ZeroClipboard.js兼容各种浏览器复制到剪切板上
    table 如何给tr border颜色
    JSON用法之将PHP数组转JS数组,JS如何接收PHP数组
    jquery操作select(增加,删除,清空)
    JS生成随机的由字母数字组合的字符串
    Redis连接(二)
    Redis集群(一)
    wap启用宏
    windows 10激活
  • 原文地址:https://www.cnblogs.com/quqinchao/p/11389958.html
Copyright © 2020-2023  润新知