From cef67eea02d0ba89d983fc894b886321b58973d7 Mon Sep 17 00:00:00 2001 From: Ben Word Date: Wed, 17 Feb 2016 16:17:31 -0700 Subject: [PATCH] Add some more comments to remote wordpress_sites --- group_vars/production/wordpress_sites.yml | 6 ++++-- group_vars/staging/wordpress_sites.yml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/group_vars/production/wordpress_sites.yml b/group_vars/production/wordpress_sites.yml index 510618f038..b505ad47b6 100644 --- a/group_vars/production/wordpress_sites.yml +++ b/group_vars/production/wordpress_sites.yml @@ -4,14 +4,16 @@ wordpress_sites: site_hosts: - example.com local_path: ../site # path targeting local Bedrock site directory (relative to Ansible root) - repo: git@github.com:roots/bedrock.git + repo: git@github.com:example/example.com.git # replace with your Git repo URL branch: master - # repo_subtree_path: site # relative path to your Bedrock/WP directory in your repo (above) if it is not the root (like the roots-example-project structure) + repo_subtree_path: site # relative path to your Bedrock/WP directory in your repo multisite: enabled: false subdomains: false ssl: enabled: false + # cert: ~/ssl/example.com.crt + # key: ~/ssl/example.com.key cache: enabled: false duration: 30s diff --git a/group_vars/staging/wordpress_sites.yml b/group_vars/staging/wordpress_sites.yml index b6e3703128..1a7122fce9 100644 --- a/group_vars/staging/wordpress_sites.yml +++ b/group_vars/staging/wordpress_sites.yml @@ -4,14 +4,16 @@ wordpress_sites: site_hosts: - staging.example.com local_path: ../site # path targeting local Bedrock site directory (relative to Ansible root) - repo: git@github.com:roots/bedrock.git + repo: git@github.com:example/example.com.git # replace with your Git repo URL branch: master - # repo_subtree_path: site # relative path to your Bedrock/WP directory in your repo (above) if it is not the root (like the roots-example-project structure) + repo_subtree_path: site # relative path to your Bedrock/WP directory in your repo multisite: enabled: false subdomains: false ssl: enabled: false + # cert: ~/ssl/example.com.crt + # key: ~/ssl/example.com.key cache: enabled: false duration: 30s