mirror of
https://github.com/funkypenguin/geek-cookbook/
synced 2025-12-17 03:31:53 +00:00
Add RSS Recipe
This commit is contained in:
@@ -23,6 +23,7 @@
|
|||||||
[portainer]: /recipes/portainer/
|
[portainer]: /recipes/portainer/
|
||||||
[radarr]: /recipes/autopirate/radarr/
|
[radarr]: /recipes/autopirate/radarr/
|
||||||
[rtorrent]: /recipes/autopirate/rtorrent/
|
[rtorrent]: /recipes/autopirate/rtorrent/
|
||||||
|
[rss]: /recipes/rss/
|
||||||
[sabnzbd]: /recipes/autopirate/sabnzbd/
|
[sabnzbd]: /recipes/autopirate/sabnzbd/
|
||||||
[sonarr]: /recipes/autopirate/sonarr/
|
[sonarr]: /recipes/autopirate/sonarr/
|
||||||
[tfa-dex-static]: /ha-docker-swarm/traefik-forward-auth/dex-static/
|
[tfa-dex-static]: /ha-docker-swarm/traefik-forward-auth/dex-static/
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ hide:
|
|||||||
|
|
||||||
Recipe | Description | Date
|
Recipe | Description | Date
|
||||||
-------------------------|------------------------------------------------------------------------------------------------------------------|--------------
|
-------------------------|------------------------------------------------------------------------------------------------------------------|--------------
|
||||||
[Authelia][authelia] | Authentication and two factor authorization server with Authelia | _1 Oct 2021_
|
[Rss][rss] | Service that generates RSS Feeds for websites that don't have one. It can be used on webservers or as a stand-alone application in CLI mode | _1 Oct 2021_
|
||||||
[NightScout][nightscout] | Share your CGM :drop_of_blood: data, setup advanced alarms and charts, for improved diabetes treatment :syringe: and quality-of-life :runner: | _9 Aug 2021_
|
[NightScout][nightscout] | Share your CGM :drop_of_blood: data, setup advanced alarms and charts, for improved diabetes treatment :syringe: and quality-of-life :runner: | _9 Aug 2021_
|
||||||
[Mealie][mealie] | Delicious, API-driven recipe manager, able to scrape-and-import recipes from a URL :cook: | _4 Feb 2021_
|
[Mealie][mealie] | Delicious, API-driven recipe manager, able to scrape-and-import recipes from a URL :cook: | _4 Feb 2021_
|
||||||
[Funkwhale][funkwhale] | Enjoy, share, and federate your music in your own funky "pod". Think "Mastodon for Music" :whale: :musical_note: | _28 Jan 2021_
|
[Funkwhale][funkwhale] | Enjoy, share, and federate your music in your own funky "pod". Think "Mastodon for Music" :whale: :musical_note: | _28 Jan 2021_
|
||||||
|
|||||||
BIN
manuscript/images/rss.png
Normal file
BIN
manuscript/images/rss.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 98 KiB |
@@ -1 +1,73 @@
|
|||||||
# RSS Bridge
|
# RSS Bridge
|
||||||
|
|
||||||
|
[RSS-Bridge](https://github.com/RSS-Bridge/rss-bridge) is a PHP project capable of generating RSS and Atom feeds for websites that don't have one. It can be used on webservers or as a stand-alone application in CLI mode. You can deploy the service in different ways. Such as installing using PHP, Or you can setup using the Docker [Image](https://hub.docker.com/r/rssbridge/rss-bridge).
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
Features include
|
||||||
|
* Ability to generate RSS feeds for sites that do not have one.
|
||||||
|
* Can be used as a webserver or used as a CLI
|
||||||
|
* Supports multiple output formats such as
|
||||||
|
* Atom
|
||||||
|
* HTML
|
||||||
|
* JSON
|
||||||
|
* Mrss
|
||||||
|
* Plaintext
|
||||||
|
|
||||||
|
--8<-- "recipe-standard-ingredients.md"
|
||||||
|
|
||||||
|
|
||||||
|
## Preparation
|
||||||
|
|
||||||
|
### Setup data locations
|
||||||
|
|
||||||
|
First we create a directory to hold the data which RSS will serve:
|
||||||
|
|
||||||
|
```
|
||||||
|
mkdir /var/data/config/rss
|
||||||
|
cd /var/data/config/rss
|
||||||
|
```
|
||||||
|
|
||||||
|
### Setup Docker Swarm
|
||||||
|
|
||||||
|
Create a docker swarm config file in docker-compose syntax (v3), something like this:
|
||||||
|
|
||||||
|
--8<-- "premix-cta.md"
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
rss:
|
||||||
|
image: rssbridge/rss-bridge:latest
|
||||||
|
volumes:
|
||||||
|
- /var/data/config/rss:/config
|
||||||
|
deploy:
|
||||||
|
labels:
|
||||||
|
# traefik common
|
||||||
|
- traefik.enable=true
|
||||||
|
- traefik.docker.network=traefik_public
|
||||||
|
|
||||||
|
# traefikv1
|
||||||
|
- traefik.frontend.rule=Host:rss.example.com
|
||||||
|
- traefik.port=80
|
||||||
|
|
||||||
|
# traefikv2
|
||||||
|
- "traefik.http.routers.rss.rule=Host(`rss.example.com`)"
|
||||||
|
- "traefik.http.services.rss.loadbalancer.server.port=80"
|
||||||
|
networks:
|
||||||
|
- traefik_public
|
||||||
|
|
||||||
|
networks:
|
||||||
|
traefik_public:
|
||||||
|
external: true
|
||||||
|
```
|
||||||
|
|
||||||
|
## Serving
|
||||||
|
|
||||||
|
### Launch RSS!
|
||||||
|
|
||||||
|
Launch the RSS stack by running ```docker stack deploy rss -c <path -to-docker-compose.yml>```
|
||||||
|
|
||||||
|
|
||||||
|
--8<-- "recipe-footer.md"
|
||||||
|
|||||||
Reference in New Issue
Block a user