mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
chore: prepare 2025-01-26 release (#4424)
This commit is contained in:
parent
8b1ba003a8
commit
4da61b7922
32
README.md
32
README.md
@ -29,7 +29,7 @@ Requires minimum PHP 7.4.
|
|||||||
|||
|
|||
|
||||||
|||
|
|||
|
||||||
|
|
||||||
## A subset of bridges (16/447)
|
## A subset of bridges (15/447)
|
||||||
|
|
||||||
* `CssSelectorBridge`: [Scrape out a feed using CSS selectors](https://rss-bridge.org/bridge01/#bridge-CssSelectorBridge)
|
* `CssSelectorBridge`: [Scrape out a feed using CSS selectors](https://rss-bridge.org/bridge01/#bridge-CssSelectorBridge)
|
||||||
* `FeedMergeBridge`: [Combine multiple feeds into one](https://rss-bridge.org/bridge01/#bridge-FeedMergeBridge)
|
* `FeedMergeBridge`: [Combine multiple feeds into one](https://rss-bridge.org/bridge01/#bridge-FeedMergeBridge)
|
||||||
@ -44,7 +44,6 @@ Requires minimum PHP 7.4.
|
|||||||
* `ThePirateBayBridge:` [Fetches torrents by search/user/category](https://rss-bridge.org/bridge01/#bridge-ThePirateBayBridge)
|
* `ThePirateBayBridge:` [Fetches torrents by search/user/category](https://rss-bridge.org/bridge01/#bridge-ThePirateBayBridge)
|
||||||
* `TikTokBridge`: [Fetches posts by username](https://rss-bridge.org/bridge01/#bridge-TikTokBridge)
|
* `TikTokBridge`: [Fetches posts by username](https://rss-bridge.org/bridge01/#bridge-TikTokBridge)
|
||||||
* `TwitchBridge`: [Fetches videos from channel](https://rss-bridge.org/bridge01/#bridge-TwitchBridge)
|
* `TwitchBridge`: [Fetches videos from channel](https://rss-bridge.org/bridge01/#bridge-TwitchBridge)
|
||||||
* `VkBridge`: [Fetches posts from user/group](https://rss-bridge.org/bridge01/#bridge-VkBridge)
|
|
||||||
* `XPathBridge`: [Scrape out a feed using XPath expressions](https://rss-bridge.org/bridge01/#bridge-XPathBridge)
|
* `XPathBridge`: [Scrape out a feed using XPath expressions](https://rss-bridge.org/bridge01/#bridge-XPathBridge)
|
||||||
* `YoutubeBridge`: [Fetches videos by username/channel/playlist/search](https://rss-bridge.org/bridge01/#bridge-YoutubeBridge)
|
* `YoutubeBridge`: [Fetches videos by username/channel/playlist/search](https://rss-bridge.org/bridge01/#bridge-YoutubeBridge)
|
||||||
* `YouTubeCommunityTabBridge`: [Fetches posts from a channel's community tab](https://rss-bridge.org/bridge01/#bridge-YouTubeCommunityTabBridge)
|
* `YouTubeCommunityTabBridge`: [Fetches posts from a channel's community tab](https://rss-bridge.org/bridge01/#bridge-YouTubeCommunityTabBridge)
|
||||||
@ -72,27 +71,27 @@ useradd --shell /bin/bash --create-home rss-bridge
|
|||||||
|
|
||||||
cd /var/www
|
cd /var/www
|
||||||
|
|
||||||
# Create folder and change ownership
|
# Create folder and change its ownership to rss-bridge
|
||||||
mkdir rss-bridge && chown rss-bridge:rss-bridge rss-bridge/
|
mkdir rss-bridge && chown rss-bridge:rss-bridge rss-bridge/
|
||||||
|
|
||||||
# Become user
|
# Become rss-bridge
|
||||||
su rss-bridge
|
su rss-bridge
|
||||||
|
|
||||||
# Fetch latest master
|
# Clone master branch into existing folder
|
||||||
git clone https://github.com/RSS-Bridge/rss-bridge.git rss-bridge/
|
git clone https://github.com/RSS-Bridge/rss-bridge.git rss-bridge/
|
||||||
cd rss-bridge
|
cd rss-bridge
|
||||||
|
|
||||||
# Copy over the default config
|
# Copy over the default config (OPTIONAL)
|
||||||
cp -v config.default.ini.php config.ini.php
|
cp -v config.default.ini.php config.ini.php
|
||||||
|
|
||||||
# Give full permissions only to owner (rss-bridge)
|
# Recursively give full permissions to user/owner
|
||||||
chmod 700 -R ./
|
chmod 700 --recursive ./
|
||||||
|
|
||||||
# Give read and execute to others (nginx and php-fpm)
|
# Give read and execute to others on folder ./static
|
||||||
chmod o+rx ./ ./static
|
chmod o+rx ./ ./static
|
||||||
|
|
||||||
# Give read to others (nginx)
|
# Recursively give give read to others on folder ./static
|
||||||
chmod o+r -R ./static
|
chmod o+r --recursive ./static
|
||||||
```
|
```
|
||||||
|
|
||||||
Nginx config:
|
Nginx config:
|
||||||
@ -110,17 +109,14 @@ server {
|
|||||||
error_log /var/log/nginx/rss-bridge.error.log;
|
error_log /var/log/nginx/rss-bridge.error.log;
|
||||||
log_not_found off;
|
log_not_found off;
|
||||||
|
|
||||||
# Intentionally not setting a root folder here
|
# Intentionally not setting a root folder
|
||||||
|
|
||||||
# autoindex is off by default but feels good to explicitly turn off
|
|
||||||
autoindex off;
|
|
||||||
|
|
||||||
# Static content only served here
|
# Static content only served here
|
||||||
location /static/ {
|
location /static/ {
|
||||||
alias /var/www/rss-bridge/static/;
|
alias /var/www/rss-bridge/static/;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Pass off to php-fpm when location is exactly /
|
# Pass off to php-fpm only when location is EXACTLY == /
|
||||||
location = / {
|
location = / {
|
||||||
root /var/www/rss-bridge/;
|
root /var/www/rss-bridge/;
|
||||||
include snippets/fastcgi-php.conf;
|
include snippets/fastcgi-php.conf;
|
||||||
@ -128,12 +124,12 @@ server {
|
|||||||
fastcgi_pass unix:/run/php/rss-bridge.sock;
|
fastcgi_pass unix:/run/php/rss-bridge.sock;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Reduce spam
|
# Reduce log noise
|
||||||
location = /favicon.ico {
|
location = /favicon.ico {
|
||||||
access_log off;
|
access_log off;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Reduce spam
|
# Reduce log noise
|
||||||
location = /robots.txt {
|
location = /robots.txt {
|
||||||
access_log off;
|
access_log off;
|
||||||
}
|
}
|
||||||
|
@ -21,20 +21,15 @@
|
|||||||
;enabled_bridges[] = ThePirateBay
|
;enabled_bridges[] = ThePirateBay
|
||||||
;enabled_bridges[] = TikTokBridge
|
;enabled_bridges[] = TikTokBridge
|
||||||
;enabled_bridges[] = Twitch
|
;enabled_bridges[] = Twitch
|
||||||
;enabled_bridges[] = Vk
|
|
||||||
;enabled_bridges[] = XPathBridge
|
;enabled_bridges[] = XPathBridge
|
||||||
;enabled_bridges[] = Youtube
|
;enabled_bridges[] = Youtube
|
||||||
;enabled_bridges[] = YouTubeCommunityTabBridge
|
;enabled_bridges[] = YouTubeCommunityTabBridge
|
||||||
enabled_bridges[] = *
|
enabled_bridges[] = *
|
||||||
|
|
||||||
; Defines the timezone used by RSS-Bridge
|
|
||||||
; Find a list of supported timezones at
|
|
||||||
; https://www.php.net/manual/en/timezones.php
|
|
||||||
; timezone = "UTC" (default)
|
|
||||||
timezone = "UTC"
|
timezone = "UTC"
|
||||||
|
|
||||||
; Display a system message to users.
|
; Display a system message to users.
|
||||||
message = ""
|
;message = "Hello world"
|
||||||
|
|
||||||
; Whether to enable debug mode.
|
; Whether to enable debug mode.
|
||||||
enable_debug_mode = false
|
enable_debug_mode = false
|
||||||
@ -52,12 +47,12 @@ max_file_size = 10000000
|
|||||||
[http]
|
[http]
|
||||||
|
|
||||||
; Operation timeout in seconds
|
; Operation timeout in seconds
|
||||||
timeout = 15
|
timeout = 5
|
||||||
|
|
||||||
; Operation retry count in case of curl error
|
; Operation retry count in case of curl error
|
||||||
retries = 2
|
retries = 1
|
||||||
|
|
||||||
; User agent
|
; Curl user agent
|
||||||
useragent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0"
|
useragent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0"
|
||||||
|
|
||||||
; Max http response size in MB
|
; Max http response size in MB
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
*/
|
*/
|
||||||
final class Configuration
|
final class Configuration
|
||||||
{
|
{
|
||||||
private const VERSION = '2025-01-02';
|
private const VERSION = '2025-01-26';
|
||||||
|
|
||||||
private static $config = [];
|
private static $config = [];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user