Initial commit with working nginx and jellyfin

This commit is contained in:
2021-04-23 01:04:44 +02:00
commit f4310c2e7d
7 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,2 @@
- name: reload nginx
command: docker restart nginx

View File

@ -0,0 +1,12 @@
- name: run nginx container
docker_container:
name: 'nginx'
image: nginx
volumes:
- "{{ nginx_confd_folder }}:/etc/nginx/conf.d"
ports:
- "80:80"
env:
NGINX_HOST: "{{ base_domain }}"
NGINX_PORT: '80'
state: started