Submitted by 熊茂祥 on 2010, September 3, 12:10 PM
原文:http://key0.cn/index.php/archives/588
说明:www.key0.cn的web目录/var/www/test; www.nginx.org的web目录/var/www/test1
1.在nginx.conf里把每个虚拟主机站点请求端口给区别开
server
{
listen 80;
server_name www.key0.cn;
index index.html index.htm index.php;
root /var/www/test;#limit_conn crawler 20;location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
}server
{
listen 80;
server_name www.nginx.org;
index index.html index.htm index.php;
root /var/www/test1;#limit_conn crawler 20;location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9001;
fastcgi_index index.php;
include fcgi.conf;
}
}
2.为每个站点建一个conf,并进行配置
#cp /usr/local/php/etc/php-fpm.conf /usr/local/php/etc/www.key0.cn.conf
#cp /usr/local/php/etc/php-fpm.conf /usr/local/php/etc/www.nginx.org.conf
在/usr/local/php/etc/www.key0.cn.conf找到php_defines,添加
<value name=”open_basedir”>/var/www/test:/tmp:/var/tmp</value>
在/usr/local/php/etc/nginx.org.conf找到php_defines,添加
<value name=”open_basedir”>/var/www/test1:/tmp:/var/tmp</value>
» 阅读全文
技术文档 | 评论:0
| 阅读:33613
Submitted by 熊茂祥 on 2010, September 3, 10:59 AM
但研究了一下nginx帮助后发现,有-s参数可对nginx服务进行管理:
# /usr/local/nginx/sbin/nginx -h
nginx version: nginx/0.7.63
Usage: nginx [-?hvVt] [-s signal] [-c filename] [-p prefix] [-g directives]
Options:
-?,-h : this help
-v : show version and exit
-V : show version and configure options then exit
-t : test configuration and exit
-s signal : send signal to a master process: stop, quit, reopen, reload
-p prefix : set prefix path (default: /usr/local/nginx/)
-c filename : set configuration file (default: conf/nginx.conf)
-g directives : set global directives out of configuration file
于是我执行
# /usr/local/nginx/sbin/nginx -s reload
nginx已经重启成功
» 阅读全文
Tags: nginx, 参数, 命令, 服务, 管理
技术文档 | 评论:0
| 阅读:44255
Submitted by 熊茂祥 on 2010, September 3, 10:16 AM
使用云端后
1.部分行业软件可以直接在云端官方站里下载,下载方便。不用去百度瞎折腾。
2.部分软件可以智能更新,无需像以前要先卸载旧版本在安装新版本的繁琐。
3.任务栏上添加了云端工具栏,虽然会占用一点资源,但是本人觉得还是比较方便的。
4.删除软件的时候无需去使用卸载程序,直接在面板里点删除就OK了,方便快捷还干净。
5.自己还可以把云端官网中没有的软件制作云端安装包,非常的好用。可以自己添加云端软件。
缺点
1.部分软件不适用于云端,例如系统安全软件,系统补丁安装类软件等和系统相关的软件。
2.居然无法把VM7.0做成云端,这是让我最头疼的。
3.云端对部分常驻内存的软件,无法再关闭软件后隐藏的问题。例如迅雷等带IE插件或者后台服务的,是个麻烦事。
不过我还是很喜欢云端的,希望云端能够更好的发展下去,让大家用软件都更简单,方便。
云端的官网为http://i.yunduan.cn/
» 阅读全文
Tags: 云端, 软件, 绿色, 方便
技术文档 | 评论:1
| 阅读:33348
Submitted by 熊茂祥 on 2010, September 2, 3:53 PM
由于我使用了脚本自动检测接口流量来批量修改限速,短时间还没发现什么问题,但是几天之后发现内存急剧减少,最后近乎4M以下,最终网络出现故障。
排查后才发现不是脚本问题,而是不断的修改限速才造成的内存持续减少,每修改一次限速,内存就减少一次,且持续多天仍然无法回收已经使用的内存。
我已经将这个问题通过邮件反馈给官方技术人员,等待回复。该问题涉及版本众多,据我测试2927,320,330均有这个问题。望大家注意。
» 阅读全文
Tags: ros, bug, 问题, 限速, 脚本
ROS | 评论:3
| 阅读:61479