Add camo example config
This commit is contained in:
parent
22a9acfc90
commit
e02bc46ed2
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -13,3 +13,4 @@ www/cache
|
||||||
google-drive-subtitles
|
google-drive-subtitles
|
||||||
lib/
|
lib/
|
||||||
integration-test-config.json
|
integration-test-config.json
|
||||||
|
conf/*.toml
|
||||||
|
|
13
conf/example/camo.toml
Normal file
13
conf/example/camo.toml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# Configuration for proxying images to a camo (or camo-compatible) proxy server.
|
||||||
|
# To use, copy to conf/camo.toml.
|
||||||
|
# More info on camo: https://github.com/atmos/camo
|
||||||
|
[camo]
|
||||||
|
enabled = true
|
||||||
|
server = 'https://my-camo-server'
|
||||||
|
# The key must match the `CAMO_KEY` environment variable passed to the camo server.
|
||||||
|
key = 'ABCDEFGH'
|
||||||
|
# Bypass the proxy for domains you trust that already support HTTPS and won't be harmful to users.
|
||||||
|
whitelisted-domains = [
|
||||||
|
'i.imgur.com',
|
||||||
|
'i.4cdn.org'
|
||||||
|
]
|
Loading…
Reference in a new issue