
unix服务器
iteye_18216
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
spawn-fcgi和net.inet.tcp.blackhole
今天在freebsd下配置nginx,用spawn-fcgi提供fastcgi 出现一个毛病就是运行spawn-fcgi之后半天没反应,也不显示错误,就一直停在那里 找来找去发现因为sysctl里设置了net.inet.tcp.blackhole=2,只要去掉了就一切正常 有人在lighttpd那里报告过这个错误,还提供了一个patch http://redmine.lig...2009-02-18 17:41:16 · 212 阅读 · 0 评论 -
nginx rewrite笔记
想把 /s123 rewrite 到 /survey/shortid/survey_id/123 rewrite "^/s(\d+)(.*)$ /survey/shortid/survey_id/$1$2 permanent; 但是死活不工作,查来查去有人说他加上host就好了,于是改为 rewrite "^/s(\d+)(.*)$ http://$host/survey/short...2009-02-19 14:33:41 · 123 阅读 · 0 评论