mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-12-23 20:11:44 +00:00
added RSS to telegram bot to rss (#14)
* Create rrstt.md RSS telegram bot * Update README.md Added rsstt to rss * Update README.md * Update README.md rsstt misstyoed as rrstt, fixed link * renamed to rsstt.MD and updated Cleaned up comments and optional env var's * Rename rrstt.md to rsstt.md * Create rsshub.md * Update README.md Add rsshub to rss tools * Update README.md Renamed /apps/rss/rsstt.md link (finally) * Create rssbridge.md * Update README.md rssbridge url
This commit is contained in:
29
apps/rss/rssbridge.md
Normal file
29
apps/rss/rssbridge.md
Normal 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`
|
||||
Reference in New Issue
Block a user