1 Commits

Author SHA1 Message Date
a97eb30314 testing 2023-08-23 17:31:52 -04:00
5 changed files with 5 additions and 5 deletions

2
Vagrantfile vendored
View File

@@ -16,7 +16,7 @@ SSH_FORWARD = settings['SSH_FORWARD'] || false
# Default to shell environment variable: PLAYBOOK (priority #1)
PLAYBOOK=ENV["PLAYBOOK"]
if !PLAYBOOK
if !PLAYBOOK || PLAYBOOK.empty?
# PLAYBOOK setting in .vagrant.yml (priority #2)
PLAYBOOK = settings['PLAYBOOK'] || false
if !PLAYBOOK || PLAYBOOK.empty?

View File

@@ -14,7 +14,7 @@ traefik_auth: admin:$apr1$T1l.BCFz$Jyg8msXYEAUi3LLH39I9d1 # admin:admin
#traefik_acme_email: realemail@example.com # Let's Encrypt settings
#traefik_production: true
# staticweb
# nginx
nginx_domain: nginx.vm.krislamo.org
nginx_name: staticsite
nginx_repo_url: https://git.krislamo.org/kris/example-website/

View File

@@ -1,10 +1,10 @@
- name: Install a static web container
- name: Install nginx server (docker)
hosts: all
become: true
vars_files:
- host_vars/staticweb.yml
- host_vars/nginx.yml
roles:
- base
- docker
- traefik
- staticweb
- nginx