97 lines
1.7 KiB
YAML
97 lines
1.7 KiB
YAML
|
---
|
||
|
version: 1.1
|
||
|
|
||
|
network:
|
||
|
|
||
|
outgoing_ports:
|
||
|
redefine: true
|
||
|
default:
|
||
|
- 443
|
||
|
|
||
|
peertube:
|
||
|
|
||
|
admin_email:
|
||
|
description: Adresse courriel de l'administrateur Peertube
|
||
|
examples:
|
||
|
- john.doe@example.net
|
||
|
type: mail
|
||
|
|
||
|
short_description:
|
||
|
description: Description courte de l'instance
|
||
|
default: >-
|
||
|
PeerTube, an ActivityPub-federated video streaming platform using P2P
|
||
|
directly in your web browser.
|
||
|
|
||
|
description:
|
||
|
description: Description de l'instance
|
||
|
default: Welcome to this PeerTube instance!
|
||
|
|
||
|
oauth2:
|
||
|
|
||
|
client:
|
||
|
|
||
|
is_client_application:
|
||
|
redefine: true
|
||
|
default: true
|
||
|
|
||
|
name:
|
||
|
redefine: true
|
||
|
default: Vidéo
|
||
|
|
||
|
description:
|
||
|
redefine: true
|
||
|
default: Plateforme de partage de vidéo Peertube
|
||
|
|
||
|
category:
|
||
|
redefine: true
|
||
|
default: Réseaux sociaux
|
||
|
|
||
|
logo:
|
||
|
redefine: true
|
||
|
default: silique_video.png
|
||
|
|
||
|
external:
|
||
|
|
||
|
external:
|
||
|
redefine: true
|
||
|
default:
|
||
|
jinja: |-
|
||
|
{%- for val in
|
||
|
general.revprox.client.external_domainnames |
|
||
|
calc_oauth2_client_external(
|
||
|
general.revprox.client.location,
|
||
|
"plugins/auth-openid-connect/0.1.0/auth/openid-connect"
|
||
|
)
|
||
|
%}
|
||
|
{{ val }}
|
||
|
{%- endfor -%}
|
||
|
|
||
|
nginx:
|
||
|
|
||
|
root:
|
||
|
redefine: true
|
||
|
default: /usr/share/peertube
|
||
|
|
||
|
revprox:
|
||
|
|
||
|
client:
|
||
|
|
||
|
location:
|
||
|
redefine: true
|
||
|
default: /
|
||
|
|
||
|
max_body_size:
|
||
|
redefine: true
|
||
|
default: 12G
|
||
|
|
||
|
is_websocket:
|
||
|
redefine: true
|
||
|
type: boolean
|
||
|
default:
|
||
|
jinja: >-
|
||
|
{%- if _.location == "/socket.io" -%}
|
||
|
true
|
||
|
{%- else -%}
|
||
|
false
|
||
|
{%- endif -%}
|