From 8c308c2bf7f658945d80be9d5880361238635f5b Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 9 Jun 2015 17:41:40 +0200 Subject: Spawn --- config/default.yaml | 21 +++++++++++++++++++++ config/test-1.yaml | 19 +++++++++++++++++++ config/test-2.yaml | 19 +++++++++++++++++++ config/test-3.yaml | 19 +++++++++++++++++++ config/test.yaml | 9 +++++++++ 5 files changed, 87 insertions(+) create mode 100644 config/default.yaml create mode 100644 config/test-1.yaml create mode 100644 config/test-2.yaml create mode 100644 config/test-3.yaml create mode 100644 config/test.yaml (limited to 'config') diff --git a/config/default.yaml b/config/default.yaml new file mode 100644 index 000000000..646113da4 --- /dev/null +++ b/config/default.yaml @@ -0,0 +1,21 @@ +listen: + port: 9000 + +webserver: + https: false + host: 'localhost' + port: 9000 + +database: + host: 'localhost' + port: 27017 + suffix: '-suffix' + +# From the project root directory +storage: + certs: 'certs/' + uploads: 'uploads/' + logs: 'logs/' + +network: + friends: [] diff --git a/config/test-1.yaml b/config/test-1.yaml new file mode 100644 index 000000000..031e4893f --- /dev/null +++ b/config/test-1.yaml @@ -0,0 +1,19 @@ +listen: + port: 9001 + +webserver: + host: 'localhost' + port: 9001 + +database: + suffix: '-test1' + +# From the project root directory +storage: + certs: 'test1/certs/' + uploads: 'test1/uploads/' + logs: 'test1/logs/' + +network: + friends: + - 'http://localhost:9002' diff --git a/config/test-2.yaml b/config/test-2.yaml new file mode 100644 index 000000000..8a2a80158 --- /dev/null +++ b/config/test-2.yaml @@ -0,0 +1,19 @@ +listen: + port: 9002 + +webserver: + host: 'localhost' + port: 9002 + +database: + suffix: '-test2' + +# From the project root directory +storage: + certs: 'test2/certs/' + uploads: 'test2/uploads/' + logs: 'test2/logs/' + +network: + friends: + - 'http://localhost:9003' diff --git a/config/test-3.yaml b/config/test-3.yaml new file mode 100644 index 000000000..3e906d125 --- /dev/null +++ b/config/test-3.yaml @@ -0,0 +1,19 @@ +listen: + port: 9003 + +webserver: + host: 'localhost' + port: 9003 + +database: + suffix: '-test3' + +# From the project root directory +storage: + certs: 'test3/certs/' + uploads: 'test3/uploads/' + logs: 'test3/logs/' + +network: + friends: + - 'http://localhost:9001' diff --git a/config/test.yaml b/config/test.yaml new file mode 100644 index 000000000..8a667a001 --- /dev/null +++ b/config/test.yaml @@ -0,0 +1,9 @@ +listen: + port: 9000 + +webserver: + https: false + +database: + host: 'localhost' + port: 27017 -- cgit v1.2.3