mirror of
https://github.com/YunoHost-Apps/peertube_ynh.git
synced 2024-09-03 19:56:29 +02:00
upgrade to 2.3.0
This commit is contained in:
parent
2b24ab443d
commit
f55e2f2548
4 changed files with 72 additions and 36 deletions
|
@ -25,7 +25,7 @@ Servers are run independently by different people and organizations. They can ap
|
||||||
|
|
||||||
By watching a video, you help the hosting provider to broadcast it by becoming a broadcaster of the video yourself. Each instance doesn’t need much money to broadcast the videos of its users.
|
By watching a video, you help the hosting provider to broadcast it by becoming a broadcaster of the video yourself. Each instance doesn’t need much money to broadcast the videos of its users.
|
||||||
|
|
||||||
**Shipped version:** 2.2.0
|
**Shipped version:** 2.3.0
|
||||||
|
|
||||||
## Important points to read before installing
|
## Important points to read before installing
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
SOURCE_URL=https://github.com/Chocobozzz/PeerTube/releases/download/v2.2.0/peertube-v2.2.0.tar.xz
|
SOURCE_URL=https://github.com/Chocobozzz/PeerTube/releases/download/v2.3.0/peertube-v2.3.0.tar.xz
|
||||||
SOURCE_SUM=eca2c735f73b16404317b42600037e01b3e7ba15c975d3796855db096114c69b
|
SOURCE_SUM=ebab03ac28b9a22a3ba5868964678e8a30815479a83733c959c79587dbeed787
|
||||||
SOURCE_SUM_PRG=sha256sum
|
SOURCE_SUM_PRG=sha256sum
|
||||||
SOURCE_FORMAT=tar.xz
|
SOURCE_FORMAT=tar.xz
|
||||||
SOURCE_IN_SUBDIR=true
|
SOURCE_IN_SUBDIR=true
|
||||||
|
|
|
@ -32,7 +32,7 @@ rates_limit:
|
||||||
trust_proxy:
|
trust_proxy:
|
||||||
- 'loopback'
|
- 'loopback'
|
||||||
|
|
||||||
# Your database name will be "peertube"+database.suffix
|
# Your database name will be database.name OR "peertube"+database.suffix
|
||||||
database:
|
database:
|
||||||
hostname: 'localhost'
|
hostname: 'localhost'
|
||||||
port: 5432
|
port: 5432
|
||||||
|
@ -50,7 +50,7 @@ redis:
|
||||||
port: 6379
|
port: 6379
|
||||||
auth: null
|
auth: null
|
||||||
db: 0
|
db: 0
|
||||||
|
|
||||||
# SMTP server to send emails
|
# SMTP server to send emails
|
||||||
smtp:
|
smtp:
|
||||||
hostname: 'localhost'
|
hostname: 'localhost'
|
||||||
|
@ -67,7 +67,7 @@ email:
|
||||||
signature: "PeerTube"
|
signature: "PeerTube"
|
||||||
subject:
|
subject:
|
||||||
prefix: "[PeerTube]"
|
prefix: "[PeerTube]"
|
||||||
|
|
||||||
# From the project root directory
|
# From the project root directory
|
||||||
storage:
|
storage:
|
||||||
tmp: '/home/yunohost.app/__APP__/storage/tmp/' # Use to download data (imports etc), store uploaded files before processing...
|
tmp: '/home/yunohost.app/__APP__/storage/tmp/' # Use to download data (imports etc), store uploaded files before processing...
|
||||||
|
@ -91,18 +91,10 @@ log:
|
||||||
maxFiles: 20
|
maxFiles: 20
|
||||||
anonymizeIP: false
|
anonymizeIP: false
|
||||||
|
|
||||||
search:
|
|
||||||
# Add ability to fetch remote videos/actors by their URI, that may not be federated with your instance
|
|
||||||
# If enabled, the associated group will be able to "escape" from the instance follows
|
|
||||||
# That means they will be able to follow channels, watch videos, list videos of non followed instances
|
|
||||||
remote_uri:
|
|
||||||
users: true
|
|
||||||
anonymous: false
|
|
||||||
|
|
||||||
trending:
|
trending:
|
||||||
videos:
|
videos:
|
||||||
interval_days: 7 # Compute trending videos for the last x days
|
interval_days: 7 # Compute trending videos for the last x days
|
||||||
|
|
||||||
# Cache remote videos on your server, to help other instances to broadcast the video
|
# Cache remote videos on your server, to help other instances to broadcast the video
|
||||||
# You can define multiple caches using different sizes/strategies
|
# You can define multiple caches using different sizes/strategies
|
||||||
# Once you have defined your strategies, choose which instances you want to cache in admin -> manage follows -> following
|
# Once you have defined your strategies, choose which instances you want to cache in admin -> manage follows -> following
|
||||||
|
@ -110,22 +102,30 @@ redundancy:
|
||||||
videos:
|
videos:
|
||||||
check_interval: '1 hour' # How often you want to check new videos to cache
|
check_interval: '1 hour' # How often you want to check new videos to cache
|
||||||
strategies: # Just uncomment strategies you want
|
strategies: # Just uncomment strategies you want
|
||||||
# -
|
# -
|
||||||
# size: '10GB'
|
|
||||||
# # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
|
|
||||||
# min_lifetime: '48 hours'
|
|
||||||
# strategy: 'most-views' # Cache videos that have the most views
|
|
||||||
# -
|
|
||||||
# size: '10GB'
|
|
||||||
# # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
|
|
||||||
# min_lifetime: '48 hours'
|
|
||||||
# strategy: 'trending' # Cache trending videos
|
|
||||||
# -
|
|
||||||
# size: '10GB'
|
# size: '10GB'
|
||||||
# # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
|
# # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
|
||||||
# min_lifetime: '48 hours'
|
# min_lifetime: '48 hours'
|
||||||
# strategy: 'recently-added' # Cache recently added videos
|
# strategy: 'most-views' # Cache videos that have the most views
|
||||||
# min_views: 10 # Having at least x views
|
# -
|
||||||
|
# size: '10GB'
|
||||||
|
# # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
|
||||||
|
# min_lifetime: '48 hours'
|
||||||
|
# strategy: 'trending' # Cache trending videos
|
||||||
|
# -
|
||||||
|
# size: '10GB'
|
||||||
|
# # Minimum time the video must remain in the cache. Only accept values > 10 hours (to not overload remote instances)
|
||||||
|
# min_lifetime: '48 hours'
|
||||||
|
# strategy: 'recently-added' # Cache recently added videos
|
||||||
|
# min_views: 10 # Having at least x views
|
||||||
|
|
||||||
|
# Other instances that duplicate your content
|
||||||
|
remote_redundancy:
|
||||||
|
videos:
|
||||||
|
# 'nobody': Do not accept remote redundancies
|
||||||
|
# 'anybody': Accept remote redundancies from anybody
|
||||||
|
# 'followings': Accept redundancies from instance followings
|
||||||
|
accept_from: 'anybody'
|
||||||
|
|
||||||
csp:
|
csp:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
@ -167,6 +167,10 @@ plugins:
|
||||||
check_latest_versions_interval: '12 hours' # How often you want to check new plugins/themes versions
|
check_latest_versions_interval: '12 hours' # How often you want to check new plugins/themes versions
|
||||||
url: 'https://packages.joinpeertube.org'
|
url: 'https://packages.joinpeertube.org'
|
||||||
|
|
||||||
|
federation:
|
||||||
|
videos:
|
||||||
|
federate_unlisted: true
|
||||||
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
|
@ -185,7 +189,7 @@ cache:
|
||||||
size: 500 # Max number of previews you want to cache
|
size: 500 # Max number of previews you want to cache
|
||||||
captions:
|
captions:
|
||||||
size: 500 # Max number of video captions/subtitles you want to cache
|
size: 500 # Max number of video captions/subtitles you want to cache
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
# Used to generate the root user at first startup
|
# Used to generate the root user at first startup
|
||||||
# And to receive emails from the contact form
|
# And to receive emails from the contact form
|
||||||
|
@ -198,7 +202,7 @@ signup:
|
||||||
enabled: false
|
enabled: false
|
||||||
limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
|
limit: 10 # When the limit is reached, registrations are disabled. -1 == unlimited
|
||||||
requires_email_verification: false
|
requires_email_verification: false
|
||||||
filters:
|
filters:
|
||||||
cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
|
cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
|
||||||
whitelist: []
|
whitelist: []
|
||||||
blacklist: []
|
blacklist: []
|
||||||
|
@ -208,7 +212,7 @@ user:
|
||||||
# -1 == unlimited
|
# -1 == unlimited
|
||||||
video_quota: -1
|
video_quota: -1
|
||||||
video_quota_daily: -1
|
video_quota_daily: -1
|
||||||
|
|
||||||
# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
|
# If enabled, the video will be transcoded to mp4 (x264) with "faststart" flag
|
||||||
# In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
|
# In addition, if some resolutions are enabled the mp4 video file will be transcoded to these new resolutions.
|
||||||
# Please, do not disable transcoding since many uploaded videos will not work
|
# Please, do not disable transcoding since many uploaded videos will not work
|
||||||
|
@ -242,7 +246,7 @@ transcoding:
|
||||||
# If you also enabled the webtorrent format, it will multiply videos storage by 2
|
# If you also enabled the webtorrent format, it will multiply videos storage by 2
|
||||||
hls:
|
hls:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
import:
|
import:
|
||||||
# Add ability for your users to import remote videos (from YouTube, torrent...)
|
# Add ability for your users to import remote videos (from YouTube, torrent...)
|
||||||
videos:
|
videos:
|
||||||
|
@ -335,7 +339,7 @@ instance:
|
||||||
# Robot.txt rules. To disallow robots to crawl your instance and disallow indexation of your site, add '/' to "Disallow:'
|
# Robot.txt rules. To disallow robots to crawl your instance and disallow indexation of your site, add '/' to "Disallow:'
|
||||||
robots: |
|
robots: |
|
||||||
User-agent: *
|
User-agent: *
|
||||||
Disallow:
|
Disallow:
|
||||||
# Security.txt rules. To discourage researchers from testing your instance and disable security.txt integration, set this to an empty string.
|
# Security.txt rules. To discourage researchers from testing your instance and disable security.txt integration, set this to an empty string.
|
||||||
securitytxt:
|
securitytxt:
|
||||||
"# If you would like to report a security issue\n# you may report it to:\nContact: https://github.com/Chocobozzz/PeerTube/blob/develop/SECURITY.md\nContact: mailto:"
|
"# If you would like to report a security issue\n# you may report it to:\nContact: https://github.com/Chocobozzz/PeerTube/blob/develop/SECURITY.md\nContact: mailto:"
|
||||||
|
@ -369,7 +373,39 @@ followings:
|
||||||
# /!\ Don't enable this if you don't have a reactive moderation team /!\
|
# /!\ Don't enable this if you don't have a reactive moderation team /!\
|
||||||
auto_follow_index:
|
auto_follow_index:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
# Host your own using https://framagit.org/framasoft/peertube/instances-peertube#peertube-auto-follow
|
||||||
index_url: 'https://instances.joinpeertube.org'
|
index_url: 'https://instances.joinpeertube.org'
|
||||||
|
|
||||||
theme:
|
theme:
|
||||||
default: 'default'
|
default: 'default'
|
||||||
|
|
||||||
|
broadcast_message:
|
||||||
|
enabled: false
|
||||||
|
message: '' # Support markdown
|
||||||
|
level: 'info' # 'info' | 'warning' | 'error'
|
||||||
|
dismissable: false
|
||||||
|
|
||||||
|
search:
|
||||||
|
# Add ability to fetch remote videos/actors by their URI, that may not be federated with your instance
|
||||||
|
# If enabled, the associated group will be able to "escape" from the instance follows
|
||||||
|
# That means they will be able to follow channels, watch videos, list videos of non followed instances
|
||||||
|
remote_uri:
|
||||||
|
users: true
|
||||||
|
anonymous: false
|
||||||
|
|
||||||
|
# Use a third party index instead of your local index, only for search results
|
||||||
|
# Useful to discover content outside of your instance
|
||||||
|
# If you enable search_index, you must enable remote_uri search for users
|
||||||
|
# If you do not enable remote_uri search for anonymous user, your instance will redirect the user on the origin instance
|
||||||
|
# instead of loading the video locally
|
||||||
|
search_index:
|
||||||
|
enabled: false
|
||||||
|
# URL of the search index, that should use the same search API and routes
|
||||||
|
# than PeerTube: https://docs.joinpeertube.org/api-rest-reference.html
|
||||||
|
# You should deploy your own with https://framagit.org/framasoft/peertube/search-index,
|
||||||
|
# and can use https://search.joinpeertube.org/ for tests, but keep in mind the latter is an unmoderated search index
|
||||||
|
url: ''
|
||||||
|
# You can disable local search, so users only use the search index
|
||||||
|
disable_local_search: false
|
||||||
|
# If you did not disable local search, you can decide to use the search index by default
|
||||||
|
is_default_search: false
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"en": "Video streaming platform using P2P directly in the web browser, connected to a federated network",
|
"en": "Video streaming platform using P2P directly in the web browser, connected to a federated network",
|
||||||
"fr": "Plateforme de diffusion vidéo par P2P directement dans le navigateur, et connectée à un réseau fédéralisé"
|
"fr": "Plateforme de diffusion vidéo par P2P directement dans le navigateur, et connectée à un réseau fédéralisé"
|
||||||
},
|
},
|
||||||
"version": "2.2.0~ynh1",
|
"version": "2.3.0~ynh1",
|
||||||
"url": "https://github.com/Chocobozzz/PeerTube",
|
"url": "https://github.com/Chocobozzz/PeerTube",
|
||||||
"license": "AGPL-3.0-only",
|
"license": "AGPL-3.0-only",
|
||||||
"maintainer": [
|
"maintainer": [
|
||||||
|
|
Loading…
Reference in a new issue