Changeset 1884
- Timestamp:
- 11/13/08 15:16:42 (8 weeks ago)
- Location:
- build/trunk
- Files:
-
- 3 modified
-
buildout.cfg (modified) (1 diff)
-
conf/supervisor.conf (modified) (1 diff)
-
grok.cfg (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
build/trunk/buildout.cfg
r1833 r1884 27 27 nginx-conf 28 28 clean-pyc 29 zodb 30 zeoctl 29 31 30 32 # broken recipe -
build/trunk/conf/supervisor.conf
r1444 r1884 18 18 serverurl=${supervisor-conf:serverurl} 19 19 20 [program:zeo] 21 command = ${buildout:bin-dir}/zeoctl fg 22 priority = 10 23 redirect_stderr = true 24 20 25 [program:grok] 21 26 command = ${app:location}/runzope -C ${buildout:parts-directory}/zopectl/zope.conf -
build/trunk/grok.cfg
r1647 r1884 1 1 [app] 2 2 port = 8080 3 zeoport = 8001 3 4 recipe = zc.zope3recipes>=0.5.3:application 4 5 eggs = CommunityAlmanac>=0 … … 46 47 </configure> 47 48 49 [zodb] 50 recipe = zc.recipe.egg:script 51 eggs = ZODB3 52 53 [zeoctl] 54 recipe = zc.zodbrecipes:server 55 zeo.conf = 56 <zeo> 57 address ${app:zeoport} 58 </zeo> 59 <filestorage 1> 60 path ${buildout:var-dir}/Data.fs 61 </filestorage> 62 63 48 64 [zopepy] 49 65 recipe = zc.recipe.egg … … 63 79 secret = PUTYOURSECRETHERE 64 80 zope.conf = 65 ${data:zconfig} 81 <zodb> 82 <zeoclient> 83 server 127.0.0.1:${app:zeoport} 84 </zeoclient> 85 </zodb> 66 86 <server> 67 87 address ${app:port}
