diff options
Diffstat (limited to 'conf/vanilla-server.json')
-rw-r--r-- | conf/vanilla-server.json | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/conf/vanilla-server.json b/conf/vanilla-server.json new file mode 100644 index 0000000..e056466 --- /dev/null +++ b/conf/vanilla-server.json @@ -0,0 +1,55 @@ +{ + "name": "Liza Server", + "daemon": "DevDaemon", + + "http": { + "port": 8822 + }, + + "log": { + "priority": 10, + "access": { + "path": "/var/log/node/access.log" + }, + "debug": { + "path": "/var/log/node/debug.log" + } + }, + + "user": { + "session": { + "handler": { + "type": "php", + "cookie": "PHPSESSID" + }, + "store": { + "type": "memcache", + "host": "localhost", + "port": 11211 + } + } + }, + + "documentStore": { + "store": "mongodb", + "host": "localhost", + "port": 27017 + }, + + "services": { + "rating": { + "process": { + "port": 5859, + "argv": "inherit" + }, + "remote": { + "host": "localhost", + "domain": "" + } + }, + "c1export": { + "host": "localhost", + "domain": "" + } + } +} |