diff options
| author | Luke Hoersten <[email protected]> | 2019-01-01 21:57:11 -0600 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2019-01-01 21:57:11 -0600 |
| commit | bef0a0a3a662a83273d459d3c39eac3e1ee7b404 (patch) | |
| tree | e054080243b6b9a374b37932c6244d46bd43a650 /main.yaml | |
| parent | 035f6e2253e1a3f3283ca3e0f7044da8880880e4 (diff) | |
Split out nginx sites.
Diffstat (limited to 'main.yaml')
| -rw-r--r-- | main.yaml | 32 |
1 files changed, 29 insertions, 3 deletions
@@ -8,7 +8,33 @@ become: yes raw: "apt-get install python -y" -- hosts: all + - name: set hostname in OS + become: yes + hostname: name="{{inventory_hostname}}" + + - name: change timezone to UTC + become: yes + timezone: name="UTC" + +- hosts: pleroma-01 roles: - - nginx - - pleroma + - role: pleroma + pleroma_host: "haskell.social" + pleroma_user: "pleroma_haskell_social" + pleroma_port: 4000 + + - role: pleroma + pleroma_host: "nth.io" + pleroma_user: "pleroma_nth_io" + pleroma_port: 4001 + + +# - hosts: haskell.social +# roles: +# - nginx +# - pleroma + +# - hosts: nth.io +# roles: +# - nginx +# - pleroma |
