diff options
author | Matthew Fennell <matthew@fennell.dev> | 2024-03-03 13:36:48 +0000 |
---|---|---|
committer | Matthew Fennell <matthew@fennell.dev> | 2024-03-03 13:36:48 +0000 |
commit | d29a60b1afec942fe4f7ca7baa95d870afaae83e (patch) | |
tree | 98d9973d5b9e92ae708bcd068ecd0e3e53d7a6a4 /README.md | |
parent | c7a604fb00d6044894ca82fb94673fbed8769431 (diff) |
Update example virtual hosts used in the README
The naming scheme I'm using for prod and nonprod environments have changed,
therefore this commit also updates the documentation to match this.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -54,8 +54,8 @@ you would like to deploy to. For instance: ```ini [xmpp_server] -fennell.dev virtual_host=chat.fennell.dev -koyo.haus virtual_host=koyo.haus +fennell.dev +koyo.haus ``` ### Create a staging inventory file @@ -68,18 +68,18 @@ Create an inventory file in `inventory/staging.ini` like the following: ```ini [xmpp_server] -staging.koyo.haus +continuous.nonprod.koyo.haus ``` ### Set variables in inventory files Now, create a directory like the following for each of the hosts you have -defined: `inventory/host_vars/staging.koyo.haus/vars.yaml` +defined: `inventory/host_vars/continuous.nonprod.koyo.haus/vars.yaml` ``` inventory/ ├── host_vars -│ └── staging.koyo.haus +│ └── continuous.nonprod.koyo.haus │ └── vars.yaml └── staging.ini ``` |