#yum install openssl
#yum install openssl-devel
然后就是自己颁发证书给自己
#cd /usr/local/nginx/conf
#openssl genrsa -des3 -out server.key 1024
#openssl req -new -key server.key -out server.csr
#openssl rsa -in server.key -out server_nopwd.key
#openssl x509 -req -days 365 -in server.csr -signkey server_nopwd.key -out server.crt
至此证书已经生成完毕,下面就是配置nginx
server {
listen 443;
ssl on;
ssl_certificate /usr/local/nginx/conf/server.crt;
ssl_certificate_key /usr/local/nginx/conf/server_nopwd.key;
}
然后重启nginx即可。
ps: 如果出现“[emerg] 10464#0: unknown directive "ssl" in /usr/local/nginx-0.6.32/conf/nginx.conf:74”则说明没有将ssl模块编译进nginx,在configure的时候加上“--with-http_ssl_module”即可^^
分享到:
相关推荐
**Nginx+RTMPModule** 是一个强大的流媒体服务器解决方案,它允许用户通过RTMP协议进行实时视频和音频流传输。...以下是关于这个组合的详细知识: ### 1....Nginx是由Igor Sysoev开发的一款开源Web服务器,以其高效的并发...
nginx: [emerg] unknown directive "Server" in /usr/local/nginx/conf/nginx.conf:55 ``` 这表示在nginx.conf文件的第55行出现了问题。由于Nginx的配置文件经常被修改,特别是在初次部署或对网站进行调整时,很...
Nginx 问题 之 nginx: [emerg] unknown directive "echo" in /weblogic/nginx/conf/nginx.conf:43-附件资源
【Nginx Tomcat集群部署】是Web服务领域常见的高可用性和负载均衡解决方案,通过结合Nginx的反向代理和负载均衡功能与Tomcat的Java应用服务器能力,可以构建出稳定且高效的Web应用程序环境。以下是对这个主题的详细...
运行命令:nginx.exe -c conf\nginx-win.conf
"解决 Nginx 访问慢和 accept() failed 错误的方法" 在本文中,我们将讨论 Nginx 访问慢和 accept() failed 错误的解决方案。这个问题通常是由于 Nginx 的连接数超过了系统设定的最大值造成的。...
文章目录目录索引1.nginx: [emerg] unknown directive “ngx_fastdfs_module” in /usr/local/nginx/conf/nginx.conf:402.nginx: [emerg] bind() to 0.0.0.0:8888 failed(98:Address already in use)3.启动和上传都...
centos7带http-flv模块的nginx,用于支持将rtmp转流为http-flv的格式...亲测是可以用的,不用感激我,请叫我雷锋!里面有一个read的说明,用法和nginx-rtmp是一样的,ffmpeg不需要转换命令。直接使用rtsp转rtmp命令即可
此资源为在windows环境下编译包含rtmp功能的nginx可执行程序,所有的源码依赖包都包含在其中。考虑到压缩包体积太大,所以把依赖库源码删除了,编译之前需要重新解压到源码下。 需仔细阅读README.md说明文档。...
重新启动服务器,访问web服务发现无法浏览啦!登陆服务器之后进到nginx使用./nginx -s reload重新读取配置文件,发现报nginx: [error] open() “/usr/local/nginx/logs/nginx.pid” failed (2: No such file or ...
临时禁用SELinux的方法是运行`setenforce 0`,但此操作只在当前会话有效。永久禁用需修改`/etc/selinux/config`文件,将`SELINUX=enforcing`改为`SELINUX=disabled`,并重启系统。 如果以上方法仍不能解决问题,还...
附件为已在linux服务器上安装验证成功的源码安装包,成功实现了正向https代理、反向代理和图片代理功能。
nginx:[emerg]unknown directive ssl,就是这个错误提示 因为我们配置这个SSL证书需要引用到nginx的中SSL这模块,然而我们一开始编译的Nginx的时候并没有把SSL模块一起编译进去,所以导致这个错误的出现。 二、错误...
nginx: [emerg] “proxy_cache_path” directive is not allowed here in /etc/nginx/conf.d/default.conf:29 提示意思“proxy_cache_path指令不被允许”,在官网上查找了相关说明,也没有发现问题,最后看应用范围...
Nginx管理员手册 My notes on NGINX administration basics, tips & tricks, caveats, and gotchas. 高中高,他玩他的摆弄着小猪猪跳舞。 第三名说:“小窍门! 我要用EN-jin-EKS盖房子!”。 ...
问题 ...解决方案: ... set_real_ip_from 172.17.10.125; #上一层代理IP地址 real_ip_header X-Forwarded-For; real_ip_recursive on;...nginx: [emerg] unknown directive set_real_ip_from in /home/lnidmp/nginx/conf/