Created
April 19, 2017 12:53
-
-
Save jimfulton/798b59365b63fd4b3e60fa7ca439d93c to your computer and use it in GitHub Desktop.
ZEO server buildout configuration example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[buildout] | |
parts = server | |
[server] | |
=> zeo config | |
recipe = zc.zdaemonrecipe | |
program = ${buildout:bin-directory}/runzeo -C ${config:location} | |
[zeo] | |
recipe = zc.recipe.egg | |
eggs = ZEO | |
[config] | |
recipe = zc.recipe.deployment:configuration | |
text = | |
<zeo> | |
address 8200 | |
</zeo> | |
<filestorage> | |
path ${buildout:directory}/data.fs | |
</filestorage> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment