30 lines
751 B
YAML
30 lines
751 B
YAML
|
#!/usr/bin/env ansible-playbook
|
||
|
# vim:ft=ansible:
|
||
|
---
|
||
|
- hosts: 9iron.club
|
||
|
roles:
|
||
|
- role: backups
|
||
|
vars:
|
||
|
backups_outdir: "/cold/backups"
|
||
|
tags: [ backups ]
|
||
|
- role: dokuwiki
|
||
|
tags: [ web, dokuwiki ]
|
||
|
- role: gitea
|
||
|
tags: [ web, gitea ]
|
||
|
- role: grafana
|
||
|
tags: [ web, grafana ]
|
||
|
- role: nextcloud
|
||
|
tags: [ web, nextcloud ]
|
||
|
- role: redirect
|
||
|
vars:
|
||
|
redirect_from: "9iron.club"
|
||
|
redirect_to: "www.9iron.club"
|
||
|
redirect_webroot: "/var/www/redirect"
|
||
|
tags: [ web, redirect ]
|
||
|
- role: gitweb
|
||
|
vars:
|
||
|
gitweb_repo: "https://git.9iron.club/salt/www"
|
||
|
gitweb_url: "www.9iron.club"
|
||
|
gitweb_webroot: "/var/www/www"
|
||
|
tags: [ web, webroot ]
|