2020-12-21 01:18:32 -06:00
|
|
|
#!/usr/bin/env ansible-playbook
|
|
|
|
# vim:ft=ansible:
|
|
|
|
# Webservers
|
|
|
|
---
|
|
|
|
- hosts: web1.desu.ltd
|
2021-06-18 12:39:21 -05:00
|
|
|
module_defaults:
|
|
|
|
docker_container:
|
|
|
|
state: started
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
pull: yes
|
2021-03-25 12:59:40 -05:00
|
|
|
tasks:
|
2021-08-24 00:31:11 -05:00
|
|
|
- name: ensure docker network
|
|
|
|
docker_network: name=web
|
|
|
|
tags: [ docker ]
|
2021-09-18 07:23:03 -05:00
|
|
|
- name: include tasks for applications
|
|
|
|
include_tasks: tasks/{{ item }}
|
2021-08-07 16:49:24 -05:00
|
|
|
with_items:
|
2021-09-18 07:23:03 -05:00
|
|
|
- app/gulagbot.yml
|
|
|
|
- app/redis.yml
|
|
|
|
- web/9iron.yml
|
|
|
|
- web/desultd.yml
|
|
|
|
- web/gitea.yml
|
|
|
|
- web/nextcloud.yml
|
|
|
|
- web/srv.yml
|
2021-08-07 16:49:24 -05:00
|
|
|
tags: [ always ]
|
2020-12-21 01:18:32 -06:00
|
|
|
roles:
|
2020-12-24 09:19:12 -06:00
|
|
|
- role: backup
|
|
|
|
vars:
|
|
|
|
backup_s3backup_list_extra:
|
2021-06-14 17:16:48 -05:00
|
|
|
- /app/gitea/gitea
|
2021-03-25 12:46:53 -05:00
|
|
|
- /data
|
2020-12-30 18:05:57 -06:00
|
|
|
- /srv/desu.ltd
|
2021-01-14 18:06:13 -06:00
|
|
|
backup_s3backup_exclude_list_extra:
|
|
|
|
- /var/lib/gitea/log
|
2021-06-14 17:16:26 -05:00
|
|
|
- /data/gitea/data/gitea/log
|
2020-12-24 09:19:12 -06:00
|
|
|
tags: [ backup ]
|
2021-01-18 05:03:46 -06:00
|
|
|
- role: git
|
|
|
|
vars:
|
|
|
|
git_repos:
|
|
|
|
- repo: https://git.desu.ltd/salt/gitea-custom
|
2021-06-14 17:16:26 -05:00
|
|
|
dest: /data/gitea/data/gitea/custom
|
2021-01-18 05:03:46 -06:00
|
|
|
tags: [ web, git ]
|
2021-09-18 00:04:05 -05:00
|
|
|
- role: ingress
|
|
|
|
vars:
|
|
|
|
ingress_servers:
|
|
|
|
# desu.ltd
|
|
|
|
- name: desu.ltd
|
2021-09-18 07:19:26 -05:00
|
|
|
proxy_pass: http://desultd:80
|
2021-10-02 21:53:44 -05:00
|
|
|
locations:
|
|
|
|
- location: /.well-known/matrix/server
|
2021-10-02 21:46:32 -05:00
|
|
|
contents: |
|
2021-10-02 21:53:44 -05:00
|
|
|
default_type application/json;
|
|
|
|
return 200 '{"m.server":"matrix.desu.ltd:443"}';
|
|
|
|
- location: /.well-known/matrix/client
|
2021-10-02 21:46:32 -05:00
|
|
|
contents: |
|
2021-10-02 21:53:44 -05:00
|
|
|
default_type application/json;
|
|
|
|
return 200 '{"m.homeserver":{"base_url":"https://matrix.desu.ltd"}}';
|
2021-09-18 00:04:05 -05:00
|
|
|
- name: git.desu.ltd
|
2021-09-18 07:19:26 -05:00
|
|
|
proxy_pass: http://gitea:3000
|
2021-09-18 00:04:05 -05:00
|
|
|
- name: nc.desu.ltd
|
|
|
|
directives:
|
|
|
|
- "add_header Strict-Transport-Security \"max-age=31536000\""
|
|
|
|
- "client_max_body_size 0"
|
2021-09-18 07:19:26 -05:00
|
|
|
proxy_pass: http://nextcloud:80
|
2021-09-18 00:04:05 -05:00
|
|
|
locations:
|
|
|
|
- location: "^~ /.well-known"
|
|
|
|
contents: |
|
|
|
|
location = /.well-known/carddav { return 301 /remote.php/dav/; }
|
|
|
|
location = /.well-known/caldav { return 301 /remote.php/dav/; }
|
|
|
|
location ^~ /.well-known { return 301 /index.php$uri; }
|
|
|
|
try_files $uri $uri/ =404;
|
|
|
|
# 9iron
|
|
|
|
- name: www.9iron.club
|
|
|
|
directives:
|
|
|
|
- "return 301 $scheme://9iron.club$request_uri"
|
|
|
|
- name: 9iron.club
|
2021-09-18 07:19:26 -05:00
|
|
|
proxy_pass: http://9iron:80
|
2021-09-18 00:04:05 -05:00
|
|
|
- name: srv.9iron.club
|
2021-09-18 07:19:26 -05:00
|
|
|
proxy_pass: http://srv:80
|
2021-09-18 00:04:05 -05:00
|
|
|
tags: [ web, docker, ingress ]
|
2021-01-26 04:25:27 -06:00
|
|
|
- hosts: web2.desu.ltd
|
2021-06-07 00:45:52 -05:00
|
|
|
module_defaults:
|
|
|
|
docker_container:
|
|
|
|
state: started
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
pull: yes
|
2021-06-03 20:34:48 -05:00
|
|
|
tasks:
|
|
|
|
- name: ensure docker network
|
|
|
|
docker_network: name=web
|
|
|
|
tags: [ docker ]
|
2021-09-18 07:23:03 -05:00
|
|
|
- name: include tasks for applications
|
|
|
|
include_tasks: tasks/{{ item }}
|
2021-08-07 16:49:24 -05:00
|
|
|
with_items:
|
2021-09-18 07:23:03 -05:00
|
|
|
- app/redis.yml
|
|
|
|
- web/peertube.yml
|
|
|
|
- web/pleroma.yml
|
2021-08-07 16:49:24 -05:00
|
|
|
tags: [ always ]
|
2021-01-25 22:19:31 -06:00
|
|
|
roles:
|
|
|
|
- role: backup
|
|
|
|
vars:
|
|
|
|
backup_s3backup_list_extra:
|
2021-06-03 20:34:48 -05:00
|
|
|
- /data
|
2021-01-25 22:19:31 -06:00
|
|
|
tags: [ backup ]
|
2021-09-18 00:04:05 -05:00
|
|
|
- role: ingress
|
|
|
|
vars:
|
|
|
|
ingress_servers:
|
|
|
|
- name: cowfee.moe
|
2021-09-18 07:19:26 -05:00
|
|
|
proxy_pass: http://pleroma:4000
|
2021-09-18 00:04:05 -05:00
|
|
|
- name: tube.cowfee.moe
|
2021-09-18 07:19:26 -05:00
|
|
|
proxy_pass: http://peertube:9000
|
2021-09-18 00:04:05 -05:00
|
|
|
tags: [ web, docker, ingress ]
|
2021-08-01 21:35:41 -05:00
|
|
|
- hosts: web3.desu.ltd
|
|
|
|
module_defaults:
|
|
|
|
docker_container:
|
|
|
|
state: started
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
pull: yes
|
|
|
|
tasks:
|
|
|
|
- name: ensure docker network
|
|
|
|
docker_network: name=web
|
|
|
|
tags: [ docker ]
|
2021-09-18 07:23:03 -05:00
|
|
|
- name: include tasks for applications
|
|
|
|
include_tasks: tasks/{{ item }}
|
2021-08-07 16:49:24 -05:00
|
|
|
with_items:
|
2021-09-18 07:23:03 -05:00
|
|
|
- app/redis.yml
|
|
|
|
- web/movienight.yml
|
|
|
|
- web/netbox.yml
|
2021-09-26 10:40:35 -05:00
|
|
|
# TODO: Replace this with Naemon(?)
|
2021-09-18 07:23:03 -05:00
|
|
|
- web/nagios.yml
|
2021-08-07 16:49:24 -05:00
|
|
|
tags: [ always ]
|
2021-08-01 21:35:41 -05:00
|
|
|
roles:
|
|
|
|
- role: backup
|
|
|
|
vars:
|
|
|
|
backup_s3backup_list_extra:
|
|
|
|
- /data
|
|
|
|
tags: [ backup ]
|
2021-09-18 00:04:05 -05:00
|
|
|
- role: ingress
|
|
|
|
vars:
|
|
|
|
ingress_servers:
|
|
|
|
- name: netbox.desu.ltd
|
2021-09-18 07:19:26 -05:00
|
|
|
proxy_pass: http://netbox:8080
|
2021-09-18 00:04:05 -05:00
|
|
|
- name: nagios.desu.ltd
|
2021-09-18 07:19:26 -05:00
|
|
|
proxy_pass: http://nagios:80
|
2021-09-18 00:04:05 -05:00
|
|
|
- name: movie.desu.ltd
|
2021-09-18 07:19:26 -05:00
|
|
|
proxy_pass: http://movienight:8089
|
2021-09-18 00:04:05 -05:00
|
|
|
tags: [ web, docker, ingress ]
|