Archive for February, 2009

February 27, 2009 0

Safari 4 Beta 出街了

By admin in By-Talk

Safari 4 Beta 出街了,
不想做白老鼠,期待正式版本
  
在网上抓了几张

February 25, 2009 0

Touch Pro行货版多普达Pro曝光

By admin in By-Talk

搭载着Windows Mobile 6.1Professional操作系统的多普达 T7278

(多普达Pro)

(多普达Pro)

February 23, 2009 0

Error 404:Road not Found

By admin in By-Talk

Error 404:Road not Found

February 17, 2009 0

nginx 重写目录方法一则

By admin in Technic

需要使用nginx做一些重写的应用
例如需要按照域名重写目录
debug.debuglee.com -> /Site/debuglee/debug
static.debuglee.com -> /Site/debuglee/static
www.debuglee.com -> /Site/debuglee/
debuglee.com -> /Site/debuglee/
NGINX 配置如下
server
{
   listen 80;
   server_name www. debuglee.com debuglee.com *. debuglee.com;
   index index.html index.htm index.php;
if ( $host ~* (.*)\.(.*)\.(.*) ) {
set $hostdir /Site/debuglee/$1;
}
if ( -d $hostdir ) {
set $hostroot /Site/debuglee/$1;
}
if ( !-d $hostdir) {
set $hostroot /Site/debuglee/;
}
if ( $hostdir ~ ‘/Site/debuglee/www’ ) {
set $hostroot /Site/debuglee/;
}
root $hostroot;
   location ~ \.php$ [...]