Questions tagged «nginx»

nginx是一个开源Web服务器,并且是HTTP,SMTP,POP3和IMAP协议的反向代理,旨在实现高性能和低内存使用。

2
让我们加密-Nginx-OCSP装订
我想在我的Nginx服务器中启用OCSP装订。我在用着 nginx版本:nginx / 1.6.2 Debian 让我们加密证书 我在这件事上真的没有经验,所以这可能是一个琐碎的问题。 这是我的Nginx安全配置 ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; ssl_dhparam /etc/ssl/private/dhparams_4096.pem; 这是我的站点/服务器安全性配置: add_header Strict-Transport-Security "max-age=31536000; includeSubdomains; preload"; # All files have been generated by Let's encrypt ssl_certificate /etc/letsencrypt/live/myexample.org/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/myexample.org/privkey.pem; # Everything below this line was added to enable OCSP stapling # What …
11 nginx  ssl 


5
cron作业上的nginx logrotate错误
我在Digital Ocean VPS上运行Ubuntu 14.04 LTS和Nginx,偶尔收到这些有关cron作业失败的电子邮件: 学科 Cron测试-x / usr / sbin / anacron || (cd / && run-parts --report /etc/cron.daily) 电子邮件的正文为: /etc/cron.daily/logrotate:错误:为/var/log/nginx/*.log运行部分运行共享的postrotate脚本时出错:/etc/cron.daily/logrotate退出,返回码为1 关于如何解决此问题有任何想法吗? 更新: /var/log/nginx/*.log { weekly missingok rotate 52 compress delaycompress notifempty create 0640 www-data adm sharedscripts prerotate if [ -d /etc/logrotate.d/httpd-prerotate ]; then \ run-parts /etc/logrotate.d/httpd-prerotate; \ fi …
10 ubuntu  cron  nginx  logrotate 

2
Nginx侦听端口,仅在设置为端口80时响应
操作系统:Funtoo。我已经将NGINX绑定到端口81(为了方便过渡,我想在我的Apache服务器上短时间运行它),并且它侦听该端口(如果我使用wget指向另一个端口,则会收到“拒绝连接”,但是使用端口81可以实现“连接”),但是它永远不会提供任何HTML响应! 在本地主机上的端口上运行wget时,我得到: # wget localhost:81 -2014-04-16 23:56:45- http://localhost:81/ Resolving localhost... 127.0.0.1 Connecting to localhost|127.0.0.1|:81... connected. HTTP request sent, awaiting response... 在另一台计算机上... $ wget 192.168.18.42:81 -2014-04-16 23:57:19- http://192.168.18.42:81/ Connecting to 192.168.18.42:81... connected. HTTP request sent, awaiting response... 在那之后什么都没有发生。这些文档存在,它是正常的Funtoo nginx.conf。 更新:我可以让它监听端口80,但仍然令我感到困惑,因为我无法在任何端口上使用它。 netstat -aWn | grep 81 | grep LISTEN tcp 60 0 …


4
nginx:目录列表中的长文件名
在OpenBSD 5.4、64位上使用nginx / 1.4.1: 使用目录列表时,如何设置nginx显示完整文件名(或至少显示文件名中的更多文件,然后显示默认文件)? 谷歌搜索只给了我这个: http://forum.nginx.org/read.php?2,124400,167420#msg-167420 January 18, 2011 08:36PM fagtron I looked all over the net and wasn't able to find this answer anyway, so I looked into the nginx source files and it's very easy. Simply modify the file located at [b]src/http/modules/ngx_http_autoindex_module.c[/b] and then compile. Change these …
8 openbsd  nginx 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.