| author | ymh <ymh.work@gmail.com> |
| Thu, 02 Aug 2012 09:02:03 +0200 | |
| changeset 64 | 47a0d7568655 |
| child 66 | 20da47bd9408 |
| permissions | -rw-r--r-- |
| 64 | 1 |
from fabric.api import env |
2 |
||
3 |
env.hosts = ['iri@web.iri.centrepompidou.fr'] |
|
4 |
||
5 |
env.web_group = 'www-data' |
|
6 |
||
7 |
env.base_export_path = "~/tmp" |
|
8 |
env.export_prefix = "idill" |
|
9 |
env.remote_web_path = "/iridata/iri-research/ldt/" |
|
10 |
env.web_rsync_filters = [ |
|
11 |
"+ core", |
|
12 |
"- /doc/" |
|
13 |
"P .htpasswd", |
|
14 |
"P .htaccess", |
|
15 |
"P robots.txt", |
|
16 |
"P crossdomain.xml", |
|
17 |
] |
|
18 |
env.web_relaunch_cmd = "apache2ctl restart" |
|
19 |