diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-10-02 15:39:09 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-10-02 15:39:09 +0200 |
commit | a6375e69668ea42e19531c6bc68dcd37f3f7cbd7 (patch) | |
tree | 03204a408d56311692c3528bedcf95d2455e94f2 /config | |
parent | 052937db8a8d282eccdbdf38d487ed8d85d3c0a7 (diff) | |
parent | c4403b29ad4db097af528a7f04eea07e0ed320d0 (diff) | |
download | PeerTube-a6375e69668ea42e19531c6bc68dcd37f3f7cbd7.tar.gz PeerTube-a6375e69668ea42e19531c6bc68dcd37f3f7cbd7.tar.zst PeerTube-a6375e69668ea42e19531c6bc68dcd37f3f7cbd7.zip |
Merge branch 'master' into webseed-merged
Diffstat (limited to 'config')
-rw-r--r-- | config/default.yaml | 3 | ||||
-rw-r--r-- | config/production.yaml.example | 4 | ||||
-rw-r--r-- | config/test-1.yaml | 4 | ||||
-rw-r--r-- | config/test-2.yaml | 4 | ||||
-rw-r--r-- | config/test-3.yaml | 4 | ||||
-rw-r--r-- | config/test-4.yaml | 4 | ||||
-rw-r--r-- | config/test-5.yaml | 5 | ||||
-rw-r--r-- | config/test-6.yaml | 6 |
8 files changed, 4 insertions, 30 deletions
diff --git a/config/default.yaml b/config/default.yaml index 9a8a57879..b44be31b0 100644 --- a/config/default.yaml +++ b/config/default.yaml | |||
@@ -19,8 +19,5 @@ storage: | |||
19 | thumbnails: 'thumbnails/' | 19 | thumbnails: 'thumbnails/' |
20 | torrents: 'torrents/' | 20 | torrents: 'torrents/' |
21 | 21 | ||
22 | network: | ||
23 | friends: [] | ||
24 | |||
25 | electron: | 22 | electron: |
26 | debug: false | 23 | debug: false |
diff --git a/config/production.yaml.example b/config/production.yaml.example index 6dc79d73f..8bc63ee92 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example | |||
@@ -1,4 +1,8 @@ | |||
1 | # Correspond to your reverse proxy "listen" configuration | ||
1 | webserver: | 2 | webserver: |
2 | https: false | 3 | https: false |
3 | host: 'example.com' | 4 | host: 'example.com' |
4 | port: 80 | 5 | port: 80 |
6 | |||
7 | database: | ||
8 | suffix: '-prod' | ||
diff --git a/config/test-1.yaml b/config/test-1.yaml index 0998eaea1..a59566cc4 100644 --- a/config/test-1.yaml +++ b/config/test-1.yaml | |||
@@ -15,7 +15,3 @@ storage: | |||
15 | logs: 'test1/logs/' | 15 | logs: 'test1/logs/' |
16 | thumbnails: 'test1/thumbnails/' | 16 | thumbnails: 'test1/thumbnails/' |
17 | torrents: 'test1/torrents/' | 17 | torrents: 'test1/torrents/' |
18 | |||
19 | network: | ||
20 | friends: | ||
21 | - 'http://localhost:9002' | ||
diff --git a/config/test-2.yaml b/config/test-2.yaml index ec2cff811..1b937898f 100644 --- a/config/test-2.yaml +++ b/config/test-2.yaml | |||
@@ -15,7 +15,3 @@ storage: | |||
15 | logs: 'test2/logs/' | 15 | logs: 'test2/logs/' |
16 | thumbnails: 'test2/thumbnails/' | 16 | thumbnails: 'test2/thumbnails/' |
17 | torrents: 'test2/torrents/' | 17 | torrents: 'test2/torrents/' |
18 | |||
19 | network: | ||
20 | friends: | ||
21 | - 'http://localhost:9003' | ||
diff --git a/config/test-3.yaml b/config/test-3.yaml index 24f5533e0..e522c13e7 100644 --- a/config/test-3.yaml +++ b/config/test-3.yaml | |||
@@ -15,7 +15,3 @@ storage: | |||
15 | logs: 'test3/logs/' | 15 | logs: 'test3/logs/' |
16 | thumbnails: 'test3/thumbnails/' | 16 | thumbnails: 'test3/thumbnails/' |
17 | torrents: 'test3/torrents/' | 17 | torrents: 'test3/torrents/' |
18 | |||
19 | network: | ||
20 | friends: | ||
21 | - 'http://localhost:9001' | ||
diff --git a/config/test-4.yaml b/config/test-4.yaml index 1f884dbf2..e30cd7978 100644 --- a/config/test-4.yaml +++ b/config/test-4.yaml | |||
@@ -15,7 +15,3 @@ storage: | |||
15 | logs: 'test4/logs/' | 15 | logs: 'test4/logs/' |
16 | thumbnails: 'test4/thumbnails/' | 16 | thumbnails: 'test4/thumbnails/' |
17 | torrents: 'test4/torrents/' | 17 | torrents: 'test4/torrents/' |
18 | |||
19 | network: | ||
20 | friends: | ||
21 | - 'http://localhost:9002' | ||
diff --git a/config/test-5.yaml b/config/test-5.yaml index 08ed9f068..3a54599f5 100644 --- a/config/test-5.yaml +++ b/config/test-5.yaml | |||
@@ -15,8 +15,3 @@ storage: | |||
15 | logs: 'test5/logs/' | 15 | logs: 'test5/logs/' |
16 | thumbnails: 'test5/thumbnails/' | 16 | thumbnails: 'test5/thumbnails/' |
17 | torrents: 'test5/torrents/' | 17 | torrents: 'test5/torrents/' |
18 | |||
19 | network: | ||
20 | friends: | ||
21 | - 'http://localhost:9001' | ||
22 | - 'http://localhost:9004' | ||
diff --git a/config/test-6.yaml b/config/test-6.yaml index a57784cca..31608add2 100644 --- a/config/test-6.yaml +++ b/config/test-6.yaml | |||
@@ -15,9 +15,3 @@ storage: | |||
15 | logs: 'test6/logs/' | 15 | logs: 'test6/logs/' |
16 | thumbnails: 'test6/thumbnails/' | 16 | thumbnails: 'test6/thumbnails/' |
17 | torrents: 'test6/torrents/' | 17 | torrents: 'test6/torrents/' |
18 | |||
19 | network: | ||
20 | friends: | ||
21 | - 'http://localhost:9001' | ||
22 | - 'http://localhost:9002' | ||
23 | - 'http://localhost:9003' | ||