├── .gitignore ├── README.md ├── all.sh ├── assets ├── jellyfin.svg ├── jellytin-dark.svg └── jellytin-light.svg ├── authentik ├── README.md ├── docker-compose.yml └── template.env ├── authentik_ldap ├── .env ├── README.md ├── docker-compose.yml └── template.env ├── docker_install.sh ├── docs ├── authentik_to_jellyfin.md ├── cloudflare_domain.md ├── jellyfin_client_whitelist.conf ├── jellyfin_client_whitelist.md ├── jellyfin_ldap.md ├── jellyfin_ldap_users.md ├── npm_to_authentik.md ├── tailscale_acl.jsonc ├── tailscale_configure.md ├── vps_harden.md └── vps_routing.md ├── nginx_proxy_manager ├── README.md ├── docker-compose.yml ├── mounts │ └── data │ │ └── nginx │ │ └── custom │ │ ├── README.md │ │ ├── http_top.conf │ │ └── server_proxy.conf └── template.env ├── npm_tunnel ├── README.md ├── docker-compose.yml └── template.env └── vps_tunnel ├── README.md ├── docker-compose.yml ├── mounts └── data │ └── nginx │ └── custom │ ├── README.md │ └── server_proxy.conf └── template.env /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/README.md -------------------------------------------------------------------------------- /all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/all.sh -------------------------------------------------------------------------------- /assets/jellyfin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/assets/jellyfin.svg -------------------------------------------------------------------------------- /assets/jellytin-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/assets/jellytin-dark.svg -------------------------------------------------------------------------------- /assets/jellytin-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/assets/jellytin-light.svg -------------------------------------------------------------------------------- /authentik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/authentik/README.md -------------------------------------------------------------------------------- /authentik/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/authentik/docker-compose.yml -------------------------------------------------------------------------------- /authentik/template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/authentik/template.env -------------------------------------------------------------------------------- /authentik_ldap/.env: -------------------------------------------------------------------------------- 1 | ../authentik/.env -------------------------------------------------------------------------------- /authentik_ldap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/authentik_ldap/README.md -------------------------------------------------------------------------------- /authentik_ldap/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/authentik_ldap/docker-compose.yml -------------------------------------------------------------------------------- /authentik_ldap/template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/authentik_ldap/template.env -------------------------------------------------------------------------------- /docker_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/docker_install.sh -------------------------------------------------------------------------------- /docs/authentik_to_jellyfin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/docs/authentik_to_jellyfin.md -------------------------------------------------------------------------------- /docs/cloudflare_domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/docs/cloudflare_domain.md -------------------------------------------------------------------------------- /docs/jellyfin_client_whitelist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/docs/jellyfin_client_whitelist.conf -------------------------------------------------------------------------------- /docs/jellyfin_client_whitelist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/docs/jellyfin_client_whitelist.md -------------------------------------------------------------------------------- /docs/jellyfin_ldap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/docs/jellyfin_ldap.md -------------------------------------------------------------------------------- /docs/jellyfin_ldap_users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/docs/jellyfin_ldap_users.md -------------------------------------------------------------------------------- /docs/npm_to_authentik.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/docs/npm_to_authentik.md -------------------------------------------------------------------------------- /docs/tailscale_acl.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/docs/tailscale_acl.jsonc -------------------------------------------------------------------------------- /docs/tailscale_configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/docs/tailscale_configure.md -------------------------------------------------------------------------------- /docs/vps_harden.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/docs/vps_harden.md -------------------------------------------------------------------------------- /docs/vps_routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/docs/vps_routing.md -------------------------------------------------------------------------------- /nginx_proxy_manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/nginx_proxy_manager/README.md -------------------------------------------------------------------------------- /nginx_proxy_manager/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/nginx_proxy_manager/docker-compose.yml -------------------------------------------------------------------------------- /nginx_proxy_manager/mounts/data/nginx/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/nginx_proxy_manager/mounts/data/nginx/custom/README.md -------------------------------------------------------------------------------- /nginx_proxy_manager/mounts/data/nginx/custom/http_top.conf: -------------------------------------------------------------------------------- 1 | lua_shared_dict authentik_ip_cache 1m; 2 | -------------------------------------------------------------------------------- /nginx_proxy_manager/mounts/data/nginx/custom/server_proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/nginx_proxy_manager/mounts/data/nginx/custom/server_proxy.conf -------------------------------------------------------------------------------- /nginx_proxy_manager/template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/nginx_proxy_manager/template.env -------------------------------------------------------------------------------- /npm_tunnel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/npm_tunnel/README.md -------------------------------------------------------------------------------- /npm_tunnel/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/npm_tunnel/docker-compose.yml -------------------------------------------------------------------------------- /npm_tunnel/template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/npm_tunnel/template.env -------------------------------------------------------------------------------- /vps_tunnel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/vps_tunnel/README.md -------------------------------------------------------------------------------- /vps_tunnel/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/vps_tunnel/docker-compose.yml -------------------------------------------------------------------------------- /vps_tunnel/mounts/data/nginx/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/vps_tunnel/mounts/data/nginx/custom/README.md -------------------------------------------------------------------------------- /vps_tunnel/mounts/data/nginx/custom/server_proxy.conf: -------------------------------------------------------------------------------- 1 | proxy_set_header X-Real-IP $remote_addr; 2 | -------------------------------------------------------------------------------- /vps_tunnel/template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam-6174/jellytin/HEAD/vps_tunnel/template.env --------------------------------------------------------------------------------