Create rssbridge.md

This commit is contained in:
ᓰᕵᕵᓍ 2023-01-22 16:42:58 +02:00 committed by GitHub
parent b909faad52
commit 6c04dec70a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

29
apps/rss/rssbridge.md Normal file
View File

@ -0,0 +1,29 @@
# RSS-Bridge
RSS-Bridge is a PHP project capable of generating RSS and Atom feeds for websites that don't have one.
<br>
- [GitHub repo](https://github.com/RSS-Bridge/rss-bridge)
# docker-compose.yml
```yml
---
version: '2'
services:
rss-bridge:
image: rssbridge/rss-bridge:latest
volumes:
- ./config:/config
ports:
- 3000:80
restart: unless-stopped
```
# Tips & Tricks
:/config is mounted as config in the virent path.
Enable all bridges by default by creating a file named whitelist.txt in it and write an asterisk:
`echo '*' > whitelist.txt`