forked from Ianleeclark/notorious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
33 lines (32 loc) · 1.08 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# MySQL Options. Set `UseMySQL` to `true` if mysql is desired for
# production/testing/anything.
# PostGres Options. Set `UsePostgres` to `true` if postgres is desired for
# production/testing/anything
UsePostgres: true
UseMySQL: false
DBHost: localhost
DBPort: "3306"
DBUser: testuser
DBPass: testuser
DBName: testdb
# Redis Options
RedisServer: localhost
RedisPort: 6379
# Whitelist indicates that torrent whitelisting is activated. When torrent
# whitelisting is activated, only pre-approved torrents can be served by
# Notorious. If whitelist is unable to be parsed, we will default to `false`
whitelist: "false"
# UseEnvVariables allows environmental variables to be used instead of
# expliclitly defined config variables.
UseEnvVariables: true
# UseIRCNotify enables announcing new torrents over IRC.
UseIRCNotify: true
IRCNick: "test12765"
IRCPass: "test12765"
IRCServer: "chat.freenode.net"
IRCPort: 6667
IRCChan: "#12765"
# UseRSSNotify enables announcing new torrents over an RSS feed.
# If enabled, the RSS feed will be served from
# `http://<hostname>:<serverPort>/rss/`
UseRSSNotify: true