| 1 | [buildout] |
|---|
| 2 | extends = |
|---|
| 3 | buildout.cfg |
|---|
| 4 | |
|---|
| 5 | parts = |
|---|
| 6 | zope2 |
|---|
| 7 | productdistros |
|---|
| 8 | fss |
|---|
| 9 | zopepy |
|---|
| 10 | zeoserver |
|---|
| 11 | instance1 |
|---|
| 12 | instance2 |
|---|
| 13 | debug-instance |
|---|
| 14 | plonesite |
|---|
| 15 | test |
|---|
| 16 | test-coverage |
|---|
| 17 | coverage-report |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | # Do not load any development eggs |
|---|
| 21 | develop = |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | [zeoserver] |
|---|
| 25 | recipe = plone.recipe.zope2zeoserver |
|---|
| 26 | zope2-location = ${zope2:location} |
|---|
| 27 | zeo-address = 127.0.0.1:8100 |
|---|
| 28 | #effective-user = educommons |
|---|
| 29 | |
|---|
| 30 | [instance1] |
|---|
| 31 | recipe = collective.recipe.zope2cluster |
|---|
| 32 | instance-clone = instance |
|---|
| 33 | zope2-location = ${zope2:location} |
|---|
| 34 | zeo-client = true |
|---|
| 35 | zeo-address = ${zeoserver:zeo-address} |
|---|
| 36 | debug-mode = off |
|---|
| 37 | verbose-security = off |
|---|
| 38 | zodb-cache-size = 5000 |
|---|
| 39 | zeo-client-cache-size = 300MB |
|---|
| 40 | http-address = 8080 |
|---|
| 41 | effective-user = educommons |
|---|
| 42 | eggs += Products.CacheSetup |
|---|
| 43 | environment-vars = |
|---|
| 44 | PYTHON_EGG_CACHE ${buildout:directory}/var/.python-eggs |
|---|
| 45 | |
|---|
| 46 | [instance2] |
|---|
| 47 | recipe = collective.recipe.zope2cluster |
|---|
| 48 | instance-clone = instance |
|---|
| 49 | zope2-location = ${zope2:location} |
|---|
| 50 | zeo-client = true |
|---|
| 51 | zeo-address = ${zeoserver:zeo-address} |
|---|
| 52 | debug-mode = off |
|---|
| 53 | verbose-security = off |
|---|
| 54 | zodb-cache-size = 5000 |
|---|
| 55 | zeo-client-cache-size = 300MB |
|---|
| 56 | http-address = 8081 |
|---|
| 57 | effective-user = educommons |
|---|
| 58 | eggs = ${instance1:eggs} |
|---|
| 59 | environment-vars = ${instance1:environment-vars} |
|---|
| 60 | |
|---|
| 61 | [debug-instance] |
|---|
| 62 | recipe = collective.recipe.zope2cluster |
|---|
| 63 | instance-clone = instance |
|---|
| 64 | http-address = 8090 |
|---|
| 65 | debug-mode = on |
|---|
| 66 | verbose-security = on |
|---|
| 67 | |
|---|
| 68 | [plonesite] |
|---|
| 69 | recipe = collective.recipe.plonesite |
|---|
| 70 | site-id = eduCommons |
|---|
| 71 | instance = instance |
|---|
| 72 | zeoserver = zeoserver |
|---|
| 73 | profiles = |
|---|
| 74 | collective.plonebookmarklets:default |
|---|
| 75 | collective.contentlicensing:default |
|---|
| 76 | collective.imstransport:default |
|---|
| 77 | collective.jaop:default |
|---|
| 78 | collective.oaiintercom:default |
|---|
| 79 | collective.searchandreplace:default |
|---|
| 80 | collective.zipfiletransport:default |
|---|
| 81 | enpraxis.leftskin:default |
|---|
| 82 | enpraxis.staticsite:default |
|---|
| 83 | enpraxis.educommons:default |
|---|
| 84 | enpraxis.wordpressexchange:default |
|---|
| 85 | iw.fss:default |
|---|
| 86 | Products.CMFPlacefulWorkflow:CMFPlacefulWorkflow |
|---|
| 87 | plone.app.iterate:plone.app.iterate |
|---|
| 88 | Products.CacheSetup:default |
|---|
| 89 | Products.LinguaPlone:LinguaPlone |
|---|
| 90 | enabled = false |
|---|
| 91 | site-replace = true |
|---|
| 92 | |
|---|
| 93 | [fss] |
|---|
| 94 | recipe = iw.recipe.fss |
|---|
| 95 | zope-instances = |
|---|
| 96 | ${instance1:location} |
|---|
| 97 | ${instance2:location} |
|---|
| 98 | storages = |
|---|
| 99 | global / directory ${buildout:directory}/var/fss_storage ${buildout:directory}/var/fss_backup |
|---|
| 100 | |
|---|
| 101 | |
|---|