Tag Archives: Web

[Linux笔记]Directadmin安装XCache教程[适合SuPHP]

2 Comments

安装Directadmin一般会安装eAccelerator做PHP加速。但是最新版PHP所支持的eAccelerator0.9.6.x已经去掉cache功能,Discuz不支持使用。搜索了N多资料,找不到针对Directadmin安装XCache的教程,那就自己写一个吧。

cd /usr/local/src/
wget http://xcache.lighttpd.net/pub/Releases/2.0.1/xcache-2.0.1.tar.gz
tar -zxvf xcache-2.0.1.tar.gz
cd xcache-2.0.1
export PHP_PREFIX="/usr/local"
$PHP_PREFIX/php5/bin/phpize
./configure --enable-xcache -with-php-config=$PHP_PREFIX/php5/bin/php-config
make && make install

Continue reading

[Linux笔记]Linux守护进程

2 Comments

之前写过一个针对Linux环境下的Nginx守护进程,现在来个增强版的.同学们看着改来用吧.

ipv4=`ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk '{print $2}'|tr -d "addr:"`
#把[email protected]改成自己的邮箱
[email protected]
#可以把nginx改为其他要守护的进程名字
nd=`pgrep -f nginx | wc -l`
if [ "$nd" = 0 ]
then
echo -e "Server IP is : $ipv4 " | mail -s "The nginx program is Dead" $EMAIL_TO
/usr/local/nginx/sbin/nginx #当被守护进程不存在后,自动启动的进程。可修改
/usr/local/php/sbin/php-fpm start #当被守护进程不存在后,自动启动的进程。可修改
else
echo "the program is running"
fi

Continue reading

[Linux笔记] Nginx 反向代理为网站加速 [CDN]

1 Comment

今天有个朋友说他的论坛放在国外主机电信电信访问还行,网通访问比较慢,就给他做了个解决方案。

五九互联Linux VPS目前走的是PCCW电讯盈科线路,是中美之间速度最快的线路。使用五九互联Linux VPS做反向代理,配合网上那些智能DNS将网通线路解析到VPS上。以达到加速的目的。

1.买到VPS后先配置好LNMP环境,然后写个conf配置好反向代理。
2.改好hosts(配置Cron以保证每次重启不会丢失hosts设置。)
3.然后使用智能DNS将网通线路指向到反向代理的VPS上,别的线路不变。就做出了一个小型CDN啦。

当然了,如果觉得麻烦,给点小费给主机商一般也乐意帮你设置的。

朋友的论坛是DiscuzX1.5的程序。
由于Discuz都是动态页面,所以直接连html也排除缓存。
这一段是排除哪些后缀的网页,在括号里按格式填写后缀就可以了。

                location ~ .*\.(php|jsp|cgi|html)?$  {
                proxy_set_header  Host $host;
                proxy_set_header X-Forwarded-For $remote_addr;
                proxy_pass http://www.xxx.com;
                }

完整的规则如下: Continue reading

[Linux笔记] Apache 常用优化 .htaccess 规则

2 Comments

DEFLATE压缩html|css|xml|js等网页文件:

AddOutputFilterByType DEFLATE text/plain  
AddOutputFilterByType DEFLATE text/html  
AddOutputFilterByType DEFLATE text/xml  
AddOutputFilterByType DEFLATE text/css  
AddOutputFilterByType DEFLATE application/xml  
AddOutputFilterByType DEFLATE application/xhtml+xml  
AddOutputFilterByType DEFLATE application/rss+xml  
AddOutputFilterByType DEFLATE application/javascript  
AddOutputFilterByType DEFLATE application/x-javascript

Continue reading