ChinaUnix.net
相关文章推荐:

nginx pureg cache

upstream backend { server 192.168.x.y:80; } server { location / { root /home/nginx/cache; error_page 404 = /fetch$uri; } location /fetch { internal; proxy_pass http://backend; proxy_store on; proxy_store_access user:rw group:rw all:r; alias /ho...

by 啊泰 - 服务器应用 - 2008-07-29 21:03:37 阅读(6312) 回复(4)

相关讨论

2008/09/03 08:10:28 [notice] 4197#0: using the "epoll" event method 2008/09/03 08:10:28 [notice] 4197#0: nginx/0.6.31 2008/09/03 08:10:28 [notice] 4197#0: built by gcc 3.4.6 20060404 (Red Hat 3.4.6-3) 2008/09/03 08:10:28 [notice] 4197#0: OS: Linux 2.6.9-42.EL 2008/09/03 08:10:28 [notice] 4197#0: sysctl(KERN_RTSIGMAX): 0 2008/09/03 08:10:28 [notice] 4197#0: getrlimit(RLIMIT_NOFILE): 65535:65535 200...

by sam.liu - 服务器应用 - 2008-11-20 15:40:28 阅读(5203) 回复(3)

nginx的负载均衡有哪些功能呢? * 如果后面的服务器其中一台坏了,它能自动识别,更牛的是它好了之后nginx可以马上识别 那么大虾知道这ngnix的这个功能使用那部分配置或文件实现的,基本原理是什么?

by andyhua12 - 服务器应用 - 2008-09-30 15:24:47 阅读(2055) 回复(8)

使用心得:nginx处理大并发比较稳定,特别省 内存 ,配置简单. 1.安装pythoncd /usr/ports/lang/python make install clean 2.安装flup cd /usr/ports/www/py-flup make install clean 3.安装 django 1) cd /usr/ports/www/py-django make install clean 4.安装 nginx cd /usr/ports/www/nginx make install clean 5.启动和管理flup的脚本 参考 http://www.djangoproject.com/documentation/fastcgi/ #!/bin/sh # Replace these thr...

by 剑心通明 - BSD文档中心 - 2008-03-23 20:44:48 阅读(662) 回复(0)

nginx总结 目录 一、安装 2 A)一般安装 2 B)高级安装 2 二、基本命令 3 三、配置文件 3 A)配置文件解释 3 B)带监控模块的配置 4 C)虚拟主机的配置 5 五、事件模型介绍--I/O复用方法 7 A)标准事件模型 7 B)高效事件模型 7 六、关于LEMP的结构 8 A)Linux+nginx+Mysql+Php 8 B)其他结构 8 七、软件的平滑升级 10 A)简单修改配置文件 10 B)平滑升级二进制代码 11 八、相关的处理信号 12 A)主进程可以处理的信号 12 B)工作进...

by adu119 - 服务器应用 - 2008-01-31 18:29:41 阅读(7713) 回复(11)

Django on nginx 建议:FreeBSD RELENG_6 使用心得:nginx处理大并发比较稳定,特别省内存,配置简单. 1.安装python cd /usr/ports/lang/python make install clean 2.安装flup cd /usr/ports/www/py-flup make install clean 3.安装django 1) cd /usr/ports/www/py-django make install clean 4.安装nginx cd /usr/ports/www/nginx make install clean 5.启动和管理flup的脚本 参考 http://www.djangoproject.co...

by jinxofeng - Python文档中心 - 2007-12-28 10:52:39 阅读(1381) 回复(0)

C++ 往cache放变量的函数是什么啊 或者给个DEMO更好啊 谢谢了

by superbtl - C/C++ - 2009-07-28 11:26:48 阅读(1582) 回复(3)

squid能否支持选择cache的内容啊? 比如我只想cache图片而不cache文本

by qqeyes - 服务器应用 - 2008-03-24 15:38:56 阅读(2790) 回复(3)

各位高手,看看我的squid.conf配置情况: [code] cache_mem 1024 MB #memory_pools_limit 2000 MB cache_dir aufs /cache0 4000 16 256 #cache_dir ufs /cache1 10000 16 256 #cache_dir ufs /cache2 10000 16 256 [/code] 我分了两个区,一个是cache1,一个是cache2,但另一位工程师为什么加了cache0了?而将cache1和cache2加了#,这样squid都忽略掉cahce1和cache2了。真的不明白,希望大家讲解一下,谢谢了!

by novboy - 服务器应用 - 2007-04-24 21:59:11 阅读(1928) 回复(1)

本人在使用过程中有些cache的疑问,望各位帮忙解析下: 1 我的BIND在/var/named/data/目录下有named_dumpdb.db文件,使用rndc dumpdb后,系统 没有任何提示. 2 如何查看cache内的内容 3 重新启动机器后,所有的cache是否全部清空? 4 重新启动后的DNS SERVER访问网站是否是要重新进行递归查询然后cache到缓存中

by dogbone - 服务器应用 - 2007-01-04 14:24:02 阅读(1490) 回复(2)