yoho.conf
2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
server
{
listen 80;
server_name dev.yoho.cn;
#access_log /nginx/logs/access_test_yoho_cn.log combined;
error_log /nginx/logs/error_test_yoho_cn.log warn;
root D:/workspace/v3.svn.dev.yoho.cn/yoho.cn/www.yoho.cn/public;
# https
#ssl on;
#ssl_certificate //nginx/data/server.pem;
#ssl_certificate_key /nginx/data/server.key;
#ssl_session_timeout 10m;
location / {
index index.php index.html;
if (!-f $request_filename){
rewrite ^/(.+)$ /index.php?$1& last;
}
}
location ~ .*\.html$ {
root E:/yoho.cn/i.svn.dev.yoho.cn/yoho.cn/www.yoho.cn/cache;
if (!-f $request_filename) {
rewrite ^/(.+)$ /index.php?$1& last;
}
}
location ~ .*\.php?$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
#fastcgi_param PATH_INFO $fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ .*/.svn/ {
deny all;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
expires 1d;
}
#location ~ .*\.(js|css)?$ {
# expires 1h;
#}
}
server
{
listen 80;
server_name res.yoho.cn res.dev.yoho.cn res.test.yoho.cn;
index index.php;
root D:/workspace/i.svn.dev.yoho.cn/yoho4.0/static;
#access_log /Data/logs/nginx/access_yohoinc.log combined;
#error_log /Data/logs/nginx/error_yohoinc.log warn;
location ~ .*/.svn/ {
deny all;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
expires 30d;
}
#location ~ .*\.(js|css)?$ {
# expires 1h;
#}
location /min/ {
rewrite ^/min/([a-z]=.*) /minify/min/index.php?$1 last;
}
location /minify/min/index.php {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}