diff options
author | Chocobozzz <me@florianbigard.com> | 2022-12-09 11:14:47 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-12-12 13:36:23 +0100 |
commit | 2732eeff9e6994582293b5aaa0cb158b7e272e9e (patch) | |
tree | 417d30cf470cd1db84e06c5dbd1b5429d4b99bc1 /config/test.yaml | |
parent | c7c5f8d0f17b0ab598fbe237f11639c6de28110c (diff) | |
download | PeerTube-2732eeff9e6994582293b5aaa0cb158b7e272e9e.tar.gz PeerTube-2732eeff9e6994582293b5aaa0cb158b7e272e9e.tar.zst PeerTube-2732eeff9e6994582293b5aaa0cb158b7e272e9e.zip |
Fix CI using 127.0.0.1 for tests
Diffstat (limited to 'config/test.yaml')
-rw-r--r-- | config/test.yaml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/config/test.yaml b/config/test.yaml index 48cf0c0f6..878d68cb9 100644 --- a/config/test.yaml +++ b/config/test.yaml | |||
@@ -3,6 +3,7 @@ listen: | |||
3 | port: 9000 | 3 | port: 9000 |
4 | 4 | ||
5 | webserver: | 5 | webserver: |
6 | hostname: '127.0.0.1' | ||
6 | https: false | 7 | https: false |
7 | 8 | ||
8 | secrets: | 9 | secrets: |
@@ -20,18 +21,18 @@ rates_limit: | |||
20 | max: 500 | 21 | max: 500 |
21 | 22 | ||
22 | database: | 23 | database: |
23 | hostname: 'localhost' | 24 | hostname: '127.0.0.1' |
24 | port: 5432 | 25 | port: 5432 |
25 | 26 | ||
26 | redis: | 27 | redis: |
27 | hostname: 'localhost' | 28 | hostname: '127.0.0.1' |
28 | 29 | ||
29 | smtp: | 30 | smtp: |
30 | hostname: null | 31 | hostname: null |
31 | port: 1025 | 32 | port: 1025 |
32 | tls: false | 33 | tls: false |
33 | disable_starttls: true | 34 | disable_starttls: true |
34 | from_address: 'test-admin@localhost' | 35 | from_address: 'test-admin@127.0.0.1' |
35 | username: null | 36 | username: null |
36 | password: null | 37 | password: null |
37 | 38 | ||