diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/default.yaml | 10 | ||||
-rw-r--r-- | config/production.yaml.example | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/config/default.yaml b/config/default.yaml index 70b10299d..f8be23d69 100644 --- a/config/default.yaml +++ b/config/default.yaml | |||
@@ -9,6 +9,16 @@ webserver: | |||
9 | hostname: 'localhost' | 9 | hostname: 'localhost' |
10 | port: 9000 | 10 | port: 9000 |
11 | 11 | ||
12 | rates_limit: | ||
13 | login: | ||
14 | # 15 attempts in 5 min | ||
15 | window: 5 minutes | ||
16 | max: 15 | ||
17 | ask_send_email: | ||
18 | # 3 attempts in 5 min | ||
19 | window: 5 minutes | ||
20 | max: 3 | ||
21 | |||
12 | # Proxies to trust to get real client IP | 22 | # Proxies to trust to get real client IP |
13 | # If you run PeerTube just behind a local proxy (nginx), keep 'loopback' | 23 | # If you run PeerTube just behind a local proxy (nginx), keep 'loopback' |
14 | # If you run PeerTube behind a remote proxy, add the proxy IP address (or subnet) | 24 | # If you run PeerTube behind a remote proxy, add the proxy IP address (or subnet) |
diff --git a/config/production.yaml.example b/config/production.yaml.example index 06baaf7d4..f1f0f12d1 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example | |||
@@ -8,6 +8,16 @@ webserver: | |||
8 | hostname: 'example.com' | 8 | hostname: 'example.com' |
9 | port: 443 | 9 | port: 443 |
10 | 10 | ||
11 | rates_limit: | ||
12 | login: | ||
13 | # 15 attempts in 5 min | ||
14 | window: 5 minutes | ||
15 | max: 15 | ||
16 | ask_send_email: | ||
17 | # 3 attempts in 5 min | ||
18 | window: 5 minutes | ||
19 | max: 3 | ||
20 | |||
11 | # Proxies to trust to get real client IP | 21 | # Proxies to trust to get real client IP |
12 | # If you run PeerTube just behind a local proxy (nginx), keep 'loopback' | 22 | # If you run PeerTube just behind a local proxy (nginx), keep 'loopback' |
13 | # If you run PeerTube behind a remote proxy, add the proxy IP address (or subnet) | 23 | # If you run PeerTube behind a remote proxy, add the proxy IP address (or subnet) |