-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathjellyfin.yml
52 lines (50 loc) · 1.75 KB
/
jellyfin.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
version: "3.7"
#networks:
# traefik:
# name: traefik
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
# hostname: jellyfin
# networks:
# traefik:
network_mode: host
# dns:
# - 192.168.1.1
# ports:
# - "8096:8096"
# - "8920:8920"
# environment:
# PUID: ${PUID}
# PGID: ${PGID}
# TZ: ${TZ}
# UMASK_SET: 022
volumes:
- ${USERDIR}/jellyfin:/config
- /dev/shm:/ram_transcode
- /media:/media:ro
labels:
traefik.enable: "false"
traefik.docker.network: traefik
traefik.backend: jellyfin
traefik.protocol: http
traefik.port: 8096
traefik.frontend.rule: Host:jellyfin.${DOMAINNAME},
# traefik.frontend.auth.forward.address: http://traefik-forward-auth:4181
# traefik.frontend.auth.forward.authResponseHeaders: X-Forwarded-User
# traefik.frontend.auth.forward.trustForwardHeader: "true"
traefik.frontend.passHostHeader: "true"
traefik.frontend.headers.SSLForceHost: "true"
traefik.frontend.headers.SSLHost: jellyfin.${DOMAINNAME}
traefik.frontend.headers.SSLRedirect: "true"
traefik.frontend.headers.browserXSSFilter: "true"
traefik.frontend.headers.contentTypeNosniff: "true"
traefik.frontend.headers.forceSTSHeader: "true"
traefik.frontend.headers.STSSeconds: 315360000
traefik.frontend.headers.STSIncludeSubdomains: "true"
traefik.frontend.headers.STSPreload: "true"
traefik.frontend.headers.customResponseHeaders: X-Robots-Tag:noindex,nofollow,nosnippet,noarchive,notranslate,noimageindex
traefik.frontend.headers.frameDeny: "true"
traefik.frontend.headers.customFrameOptionsValue: 'allow-from https://${DOMAINNAME}'
restart: always