Kris Lamoureux
81d2ea447a
- Added development "mediaserver" playbook for testing - rm .gitignore in roles dir since no external ansible roles are used - Update a part of the base role to use FQCN for linting - Added "jellyfin" role to install Jellyfin with docker-compose - Updated Traefik to use the loopback for default web entry points - Simplified Traefik docker-compose vars, Ansible sets defaults
19 lines
497 B
YAML
19 lines
497 B
YAML
# Container settings
|
|
traefik_name: traefik
|
|
traefik_standalone: true
|
|
traefik_http_only: false
|
|
traefik_debug: false
|
|
traefik_web_entry: "127.0.0.1:8000"
|
|
traefik_websecure_entry: "127.0.0.1:8443"
|
|
traefik_localonly: "10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16, 127.0.0.0/8"
|
|
|
|
# HTTPS settings
|
|
traefik_production: false
|
|
traefik_hsts_enable: false
|
|
traefik_hsts_preload: false
|
|
traefik_hsts_seconds: 0
|
|
traefik_http_redirect: true
|
|
|
|
# Host settings
|
|
traefik_root: "{{ docker_compose_root }}/{{ traefik_name }}"
|