This commit is contained in:
Kris Lamoureux 2022-05-19 01:29:38 -04:00
parent ed9100bc8f
commit acfb17f418
5 changed files with 22 additions and 0 deletions

View File

@ -5,6 +5,7 @@
- host_vars/bitwarden.yml - host_vars/bitwarden.yml
roles: roles:
- base - base
- proxy
- docker - docker
- traefik - traefik
- bitwarden - bitwarden

View File

@ -13,6 +13,9 @@ traefik_domain: traefik.vm.krislamo.org
traefik_auth: admin:$apr1$T1l.BCFz$Jyg8msXYEAUi3LLH39I9d1 # admin:admin traefik_auth: admin:$apr1$T1l.BCFz$Jyg8msXYEAUi3LLH39I9d1 # admin:admin
#traefik_acme_email: realemail@example.com # Let's Encrypt settings #traefik_acme_email: realemail@example.com # Let's Encrypt settings
#traefik_production: true #traefik_production: true
traefik_ports:
- "8000:80"
- "4430:443"
# bitwarden # bitwarden
# Get Installation ID & Key at https://bitwarden.com/host/ # Get Installation ID & Key at https://bitwarden.com/host/

1
roles/.gitignore vendored
View File

@ -11,6 +11,7 @@
!nextcloud*/ !nextcloud*/
!nginx*/ !nginx*/
!prometheus*/ !prometheus*/
!proxy/*
!rsnapshot*/ !rsnapshot*/
!traefik*/ !traefik*/
!unifi*/ !unifi*/

View File

@ -0,0 +1,5 @@
- name: Reload nginx
service:
name: nginx
state: reloaded
listen: reload_nginx

View File

@ -0,0 +1,12 @@
- name: Install nginx
apt:
name: nginx
state: present
update_cache: true
- name: Install nginx configuration
template:
src: nginx.conf.j2
dest: /etc/nginx/nginx.conf
mode: '0644'
notify: reload_nginx