看了半天,找不到0.6怎么升0.7的教程啊.
郁闷了,我咋看不到呢回复 1# 的帖子
0.6 和0.7只是版本上的区别,如果很在意版本之间用0.7里面的nginx或php的升级脚本升级即可。回复 2# 的帖子
server{
listen 80;
server_name b2bcc.com www.b2bcc.com *.b2bcc.com;
index index.html index.htm index.php default.html default.htm default.php;
root/home/wwwroot/b2bcc.com;
location / {
try_files $uri @apache;
}
location @apache {
internal;
proxy_pass http://127.0.0.1:88;
include proxy.conf;
}
location ~ .*\.(php|php5)?$
{
proxy_pass http://127.0.0.1:88;
include proxy.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
log_formatb2bcc.com'$remote_addr - $remote_user [$time_local] $request '
'$status $body_bytes_sent $http_referer '
'$http_user_agent $http_x_forwarded_for';
access_log/home/wwwlogs/b2bcc.com.logb2bcc.com;
}
怎么带“www” 不能访问呀!!!! 原帖由 licess 于 2011-4-27 13:57 发表 https://bbs.vpser.net/images/common/back.gif
0.6 和0.7只是版本上的区别,如果很在意版本之间用0.7里面的nginx或php的升级脚本升级即可。
LNMPA模式的话还能用php升级脚本吗?
回复 4# 的帖子
lnmpa下有专门的升级脚本./upgrade_lnmpa_php.sh 谢谢军哥,马上试试看
页:
[1]