rss-bridge configurabile live
This commit is contained in:
parent
1c78a21eb8
commit
896c6a49d8
4 changed files with 52 additions and 1 deletions
|
@ -35,6 +35,10 @@ services:
|
||||||
build:
|
build:
|
||||||
context: ./rss-bridge/
|
context: ./rss-bridge/
|
||||||
container_name: feedati_rss_bridge
|
container_name: feedati_rss_bridge
|
||||||
|
volumes:
|
||||||
|
- ./rss-bridge:/app/public/
|
||||||
|
- ./docker/rssbridge-config.php:/app/public/config.ini.php:ro
|
||||||
|
- ./docker/rssbridge-whitelist.txt:/app/public/whitelist.txt:ro
|
||||||
ports:
|
ports:
|
||||||
- 8001:80
|
- 8001:80
|
||||||
environment:
|
environment:
|
||||||
|
|
44
docker/rssbridge-config.php
Normal file
44
docker/rssbridge-config.php
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
; <?php exit; ?> DO NOT REMOVE THIS LINE
|
||||||
|
|
||||||
|
; This file contains the default settings for RSS-Bridge. Do not change this
|
||||||
|
; file, it will be replaced on the next update of RSS-Bridge! You can specify
|
||||||
|
; your own configuration in 'config.ini.php' (copy this file).
|
||||||
|
|
||||||
|
[cache]
|
||||||
|
|
||||||
|
; Allow users to specify custom timeout for specific requests.
|
||||||
|
; true = enabled
|
||||||
|
; false = disabled (default)
|
||||||
|
custom_timeout = false
|
||||||
|
|
||||||
|
[proxy]
|
||||||
|
|
||||||
|
; Sets the proxy url (i.e. "tcp://192.168.0.0:32")
|
||||||
|
; "" = Proxy disabled (default)
|
||||||
|
url = ""
|
||||||
|
|
||||||
|
; Sets the proxy name that is shown on the bridge instead of the proxy url.
|
||||||
|
; "" = Show proxy url
|
||||||
|
name = "Hidden proxy name"
|
||||||
|
|
||||||
|
; Allow users to disable proxy usage for specific requests.
|
||||||
|
; true = enabled
|
||||||
|
; false = disabled (default)
|
||||||
|
by_bridge = false
|
||||||
|
|
||||||
|
[authentication]
|
||||||
|
|
||||||
|
; Enables authentication for all requests to this RSS-Bridge instance.
|
||||||
|
;
|
||||||
|
; Warning: You'll have to upgrade existing feeds after enabling this option!
|
||||||
|
;
|
||||||
|
; true = enabled
|
||||||
|
; false = disabled (default)
|
||||||
|
enable = false
|
||||||
|
|
||||||
|
; The username for authentication. Insert this name when prompted for login.
|
||||||
|
username = ""
|
||||||
|
|
||||||
|
; The password for authentication. Insert this password when prompted for login.
|
||||||
|
; Use a strong password to prevent others from guessing your login!
|
||||||
|
password = ""
|
1
docker/rssbridge-whitelist.txt
Normal file
1
docker/rssbridge-whitelist.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
*
|
4
dodo.py
4
dodo.py
|
@ -16,7 +16,9 @@ def task_build():
|
||||||
'uptodate': [up2date_anyimages],
|
'uptodate': [up2date_anyimages],
|
||||||
'file_dep': ['docker-compose.yml', 'docker/Dockerfile-tt-rss',
|
'file_dep': ['docker-compose.yml', 'docker/Dockerfile-tt-rss',
|
||||||
'docker/ttrss-openrc-apache',
|
'docker/ttrss-openrc-apache',
|
||||||
'docker/ttrss-openrc-ttrssupdate'],
|
'docker/ttrss-openrc-ttrssupdate',
|
||||||
|
'rss-bridge/Dockerfile'
|
||||||
|
],
|
||||||
'actions': [COMPOSE + ' build'],
|
'actions': [COMPOSE + ' build'],
|
||||||
'clean': [run_task_func(task__build_rm),
|
'clean': [run_task_func(task__build_rm),
|
||||||
run_task_func(task__build_rmi)],
|
run_task_func(task__build_rmi)],
|
||||||
|
|
Loading…
Reference in a new issue