forked from twz915/BAE_Django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.conf
executable file
·73 lines (54 loc) · 1.48 KB
/
app.conf
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
########################## BAE application config file ######################
#
# app.conf 采用YAML格式, 请参考 http://yaml.org/
# 请尽量不要在配置部分使用中文,以免发布失败
# 请不要使用TAB键,应该使用空格
# 一定要注意对齐,否则发布会失败
# app.conf 详细功能,请参考:
# http://developer.baidu.com/wiki/index.php?title=docs/cplat/rt/manage/conf
# http://godbae.duapp.com/?p=654
#
##############################################################################
handlers:
- url : /static/(.+)
script : /static/$1
- url : /media/(.+)
script : /media/$1
- url : (.+)\.js$
script : $1.js
- url : (.+)\.css$
script : $1.css
- url : (.+)\.xml$
script : $1.xml
- url : (.+)\.xsl$
script : $1.xsl
- url : (.+)\.jpg$
script : $1.jpg
- url : (.+)\.jpeg$
script : $1.jpeg
- url : (.+)\.png$
script : $1.png
- url : (.+)\.gif$
script : $1.gif
- url : (.+)\.txt$
script : $1.txt
- url : (.+)\.zip$
script : $1.zip
- url : (.+)\.rar$
script : $1.rar
- url : (.+)\.tar\.gz$
script : $1.tar.gz
- url : (.+)\.mp4$
script : $1.mp4
- url : (.+)\.mp3$
script : $1.mp3
- url : /favicon.ico
script : /favicon.ico
- url : /.*
script : index.py
- expire : .jpg modify 10 years
- expire : .swf modify 10 years
- expire : .png modify 10 years
- expire : .gif modify 10 years
- expire : .JPG modify 10 years
- expire : .ico modify 10 years