存档

‘Linux’ 分类的存档

linux-gate.so.1 => (0×00302000)
libdl.so.2 => /lib/libdl.so.2 (0x005e2000)
librt.so.1 => /lib/librt.so.1 (0x0068c000)
libstdc++-libc6.2-2.so.3 => /usr/lib/libstdc++-libc6.2-2.so.3 (0×00111000)
libm.so.6 => /lib/libm.so.6 (0x005e8000)[......]

七 24th, 2009 | Filed under Linux
标签: ,

之前安装typecho和magike时,出现跳转异常,最后发现nginx没有配置path_info,现在把方法保存下来。

修改:

location ~ .*\.(php|php5)? $
{
fastcgi_pass unix:/tmp/php-cgi.sock;
#fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;[......]

七 8th, 2009 | Filed under Linux

环境:CentOS5.3+Nginx 0.7,启用伪静态:

编辑/usr/local/nginx/conf/nginx.conf,在server段添加
server
{
listen 80;
server_name xxx.phoebus.cn;
index index.html index.htm index.php;[......]

七 6th, 2009 | Filed under Linux

DELL PE840,至强3220 四核,8G RAM,千光网卡。
Centos 5.3+VMware server 2.0.1,用起来那真是相当的爽!
WEB server 用Centos 5.3+Nginx 0.7+php 5.2,我的BLOG没什么流量,Nginx只开了4个进程,php-cgi[......]

继续阅读

七 2nd, 2009 | Filed under Linux, 网络技术