This commit is contained in:
2023-03-24 01:00:30 -04:00
parent c67a39982e
commit 8b63b66b74
12 changed files with 125 additions and 35 deletions

View File

@@ -0,0 +1,26 @@
base_domain: vm.krislamo.org
# base
allow_reboot: false
manage_network: false
# proxy
proxy:
#production: true
dns_cloudflare:
opts: --test-cert
#email: realemail@example.com
#api_token: CLOUDFLARE_DNS01_API_TOKEN
wildcard_domains:
- "{{ base_domain }}"
servers:
- domain: "{{ jellyfin_domain }}"
proxy_pass: "http://127.0.0.1:8080"
# docker
docker_users:
- vagrant
# jellyfin
jellyfin_domain: "jellyfin.{{ base_domain }}"
jellyfin_version: latest

10
dev/mediaserver.yml Normal file
View File

@@ -0,0 +1,10 @@
- name: Install Media Server
hosts: all
become: true
vars_files:
- host_vars/mediaserver.yml
roles:
- base
- proxy
- docker
- jellyfin