2020-12-21 01:18:32 -06:00
|
|
|
#!/usr/bin/env ansible-playbook
|
|
|
|
# vim:ft=ansible:
|
|
|
|
# Webservers
|
|
|
|
---
|
2022-07-21 21:05:27 -05:00
|
|
|
- hosts: vm-general-1.ashburn.mgmt.desu.ltd
|
2022-02-15 15:19:34 -06:00
|
|
|
gather_facts: no
|
2021-06-18 12:39:21 -05:00
|
|
|
module_defaults:
|
|
|
|
docker_container:
|
|
|
|
restart_policy: unless-stopped
|
|
|
|
pull: yes
|
2022-07-21 21:05:27 -05:00
|
|
|
pre_tasks:
|
2021-08-24 00:31:11 -05:00
|
|
|
- name: ensure docker network
|
|
|
|
docker_network: name=web
|
|
|
|
tags: [ docker ]
|
2022-07-21 21:05:27 -05:00
|
|
|
tasks:
|
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:
|
2022-07-21 23:22:14 -05:00
|
|
|
- app/gitlab-runner.yml
|
2021-09-18 07:23:03 -05:00
|
|
|
- app/redis.yml
|
2022-07-23 17:30:14 -05:00
|
|
|
- app/vaultwarden.yml
|
2021-09-18 07:23:03 -05:00
|
|
|
- web/9iron.yml
|
|
|
|
- web/desultd.yml
|
2022-07-21 21:05:27 -05:00
|
|
|
- web/element-web.yml
|
2022-09-03 17:27:17 -05:00
|
|
|
- web/firefly-iii.yml
|
2021-09-18 07:23:03 -05:00
|
|
|
- web/gitea.yml
|
2022-11-17 13:26:18 -06:00
|
|
|
- web/libreddit.yml
|
2022-07-21 21:05:27 -05:00
|
|
|
- web/netbox.yml
|
2021-09-18 07:23:03 -05:00
|
|
|
- web/nextcloud.yml
|
2022-11-13 20:55:40 -06:00
|
|
|
- web/prowlarr.yml
|
|
|
|
- web/radarr.yml
|
|
|
|
- web/sonarr.yml
|
2021-09-18 07:23:03 -05:00
|
|
|
- web/srv.yml
|
2022-07-21 21:05:27 -05:00
|
|
|
- web/synapse.yml
|
2022-11-13 20:55:40 -06:00
|
|
|
- web/transmission.yml
|
2023-11-28 13:50:40 -06:00
|
|
|
- web/sb-mirror.yml
|
2022-11-13 13:07:36 -06:00
|
|
|
- game/factorio.yml
|
2023-05-17 19:18:04 -05:00
|
|
|
- game/minecraft-create-extra.yml
|
2023-06-04 20:13:39 -05:00
|
|
|
- game/minecraft-vanilla.yml
|
2023-10-06 01:06:02 -05:00
|
|
|
- game/minecraft-prominence2.yml
|
2023-11-30 10:06:23 -06:00
|
|
|
- game/minecraft-stoneblock.yml
|
2024-01-23 12:37:03 -06:00
|
|
|
- game/palworld.yml
|
2023-05-17 19:18:04 -05:00
|
|
|
- game/satisfactory.yml
|
2023-07-08 12:01:52 -05:00
|
|
|
- game/zomboid.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
|
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
|
2022-07-21 21:44:46 -05:00
|
|
|
- /data/minecraft/oldpack/backups
|
2022-11-01 18:08:02 -05:00
|
|
|
- /data/minecraft/stoneblock/backups
|
2023-05-17 19:18:04 -05:00
|
|
|
- /data/minecraft/create-extra/backups
|
2023-11-03 09:34:01 -05:00
|
|
|
- /data/minecraft/prominence/FeedTheBeast/world/.git
|
2023-11-28 13:50:40 -06:00
|
|
|
- /data/sb-mirror
|
2022-11-13 20:55:40 -06:00
|
|
|
- /data/shared/media
|
2023-11-03 09:34:01 -05:00
|
|
|
- /data/shared/downloads
|
2023-02-21 21:04:21 -06:00
|
|
|
- /data/terraria/generic/backups
|
2020-12-24 09:19:12 -06:00
|
|
|
tags: [ backup ]
|
2023-12-22 11:25:46 -06:00
|
|
|
- role: docker-tmodloader14
|
|
|
|
tags: [ terraria, tmodloader ]
|
2024-01-12 00:49:18 -06:00
|
|
|
# - role: docker-tmodloader14
|
|
|
|
# vars:
|
|
|
|
# tmodloader_external_port: "7778"
|
|
|
|
# tmodloader_name: "test"
|
|
|
|
# tags: [ terraria-test, tmodloader-test ]
|
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-12-08 21:34:32 -06:00
|
|
|
- role: nagios
|
|
|
|
vars:
|
2021-12-24 16:47:21 -06:00
|
|
|
nagios_matrix_server: "https://matrix.desu.ltd"
|
2022-01-27 14:31:58 -06:00
|
|
|
nagios_matrix_room: "!NWNCKlNmOTcarMcMIh:desu.ltd"
|
2021-12-24 16:47:21 -06:00
|
|
|
nagios_matrix_token: "{{ secret_nagios_matrix_token }}"
|
2021-12-08 21:34:32 -06:00
|
|
|
nagios_data_dir: /data/nagios
|
|
|
|
nagios_admin_pass: "{{ secret_nagios_admin_pass }}"
|
|
|
|
nagios_contacts:
|
2021-12-24 16:47:21 -06:00
|
|
|
- name: matrix
|
|
|
|
host_notification_commands: notify-host-by-matrix
|
|
|
|
service_notification_commands: notify-service-by-matrix
|
2022-01-04 18:00:55 -06:00
|
|
|
host_notification_period: ansible-not-late-at-night
|
|
|
|
service_notification_period: ansible-not-late-at-night
|
2021-12-24 16:56:06 -06:00
|
|
|
extra:
|
|
|
|
- key: contactgroups
|
|
|
|
value: ansible
|
2021-12-08 21:34:32 -06:00
|
|
|
- name: salt
|
|
|
|
host_notification_commands: notify-host-by-email
|
|
|
|
service_notification_commands: notify-service-by-email
|
|
|
|
extra:
|
|
|
|
- key: email
|
2021-12-24 15:36:18 -06:00
|
|
|
value: alerts@babor.tech
|
2021-12-08 21:34:32 -06:00
|
|
|
nagios_commands:
|
|
|
|
# This command is included in the container image
|
|
|
|
- name: check_nrpe
|
|
|
|
command: "$USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$"
|
|
|
|
- name: check_by_ssh
|
|
|
|
command: "$USER1$/check_by_ssh -H $HOSTADDRESS$ -F /opt/nagios/etc/ssh_config -t 30 -q -i /opt/nagios/etc/id_ed25519 -l nagios-checker -C \"$ARG1$\""
|
2021-12-24 16:47:21 -06:00
|
|
|
- name: notify-host-by-matrix
|
2022-05-02 15:46:41 -05:00
|
|
|
command: "/usr/bin/printf \"%b\" \"$NOTIFICATIONTYPE$\\n$HOSTNAME$ is $HOSTSTATE$\\nAddress: $HOSTADDRESS$\\nInfo: $HOSTOUTPUT$\\nDate/Time: $LONGDATETIME$\" | /opt/Custom-Nagios-Plugins/notify-by-matrix"
|
2021-12-24 16:47:21 -06:00
|
|
|
- name: notify-service-by-matrix
|
2022-05-02 15:46:41 -05:00
|
|
|
command: "/usr/bin/printf \"%b\" \"$NOTIFICATIONTYPE$\\nService $HOSTALIAS$ - $SERVICEDESC$ is $SERVICESTATE$\\nInfo: $SERVICEOUTPUT$\\nDate/Time: $LONGDATETIME$\" | /opt/Custom-Nagios-Plugins/notify-by-matrix"
|
2021-12-08 21:34:32 -06:00
|
|
|
nagios_services:
|
|
|
|
# Agentless checks
|
|
|
|
- name: HTTP
|
|
|
|
command: check_http
|
|
|
|
hostgroup: tag-nagios-checkhttp
|
|
|
|
- name: HTTPS
|
|
|
|
command: check_http!--ssl
|
|
|
|
hostgroup: tag-nagios-checkhttp
|
|
|
|
- name: SSH
|
|
|
|
command: check_ssh
|
|
|
|
# check_by_ssh checks
|
|
|
|
- name: CPU Utilization
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_cpu_stats -w 75 -c 90
|
|
|
|
- name: DNS Resolution
|
|
|
|
command: check_by_ssh!/usr/lib/nagios/plugins/check_etc_resolv
|
2022-04-27 17:58:00 -05:00
|
|
|
- name: Executables in tmp
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_executables_in_tmp
|
2021-12-08 21:34:32 -06:00
|
|
|
- name: Last Ansible Play
|
2022-07-28 21:45:15 -05:00
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_file_age /var/lib/ansible-last-run -w 432000 -c 604800
|
2021-12-08 21:34:32 -06:00
|
|
|
- name: Memory Usage
|
2022-01-29 08:39:53 -06:00
|
|
|
command: check_by_ssh!/usr/lib/nagios/plugins/check_memory -w 10% -c 5%
|
2022-01-03 13:18:14 -06:00
|
|
|
hostgroup: "ansible,!tag-prov-zfs"
|
2021-12-08 21:34:32 -06:00
|
|
|
- name: Ping Self over DNS
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_ping_by_hostname
|
|
|
|
- name: Reboot Required
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_reboot_required
|
|
|
|
- name: Unit atd.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit atd.service
|
|
|
|
- name: Unit backup.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit backup.service
|
2022-01-03 13:18:14 -06:00
|
|
|
hostgroup: "ansible,!role-hypervisor"
|
2021-12-08 21:34:32 -06:00
|
|
|
- name: Unit backup.timer
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit backup.timer
|
2022-01-03 13:18:14 -06:00
|
|
|
hostgroup: "ansible,!role-hypervisor"
|
2021-12-08 21:34:32 -06:00
|
|
|
- name: Unit cron.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit cron.service
|
|
|
|
- name: Unit dbus.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit dbus.service
|
|
|
|
- name: Unit ssh.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit ssh.service
|
|
|
|
- name: Unit systemd-resolved.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit systemd-resolved.service
|
2022-01-03 13:18:14 -06:00
|
|
|
hostgroup: "ansible,!role-hypervisor"
|
2021-12-08 21:34:32 -06:00
|
|
|
- name: Users
|
|
|
|
command: check_by_ssh!/usr/lib/nagios/plugins/check_users -w 3 -c 5
|
2022-01-10 22:14:07 -06:00
|
|
|
# Privileged checks
|
|
|
|
# Required because check_disk may attempt to get the free space of
|
|
|
|
# restricted mountpoints
|
2021-12-15 19:57:20 -06:00
|
|
|
- name: Disk Usage
|
2022-02-18 19:16:01 -06:00
|
|
|
command: check_by_ssh!/usr/bin/sudo /usr/lib/nagios/plugins/check_disk -M -u GB -X nfs -X tracefs -X cgroup -X tmpfs -X overlay -X shm -w 15% -c 10% -W 15% -K 10% -A -I '^/run/' -I '^udev$' -I '^/var/lib/kubelet/' -I '^/tmp/.mount_' -I '^/dev/loop'
|
2022-01-10 22:14:07 -06:00
|
|
|
# Device type checks
|
|
|
|
# R720
|
|
|
|
- name: CPU0 Temperature
|
2022-01-11 00:00:31 -06:00
|
|
|
command: check_by_ssh!/usr/bin/sudo /usr/local/bin/monitoring-scripts/check_temp -n -w 65 -c 75 --sensor coretemp-isa-0000
|
2022-01-10 23:46:26 -06:00
|
|
|
hostgroup: device-type-r720
|
2022-01-10 22:14:07 -06:00
|
|
|
- name: CPU1 Temperature
|
2022-01-11 00:00:31 -06:00
|
|
|
command: check_by_ssh!/usr/bin/sudo /usr/local/bin/monitoring-scripts/check_temp -n -w 65 -c 75 --sensor coretemp-isa-0001
|
2022-01-10 23:46:26 -06:00
|
|
|
hostgroup: device-type-r720
|
2022-01-11 00:16:54 -06:00
|
|
|
# Pi 4 4G
|
|
|
|
- name: CPU Temperature
|
|
|
|
command: check_by_ssh!/usr/bin/sudo /usr/local/bin/monitoring-scripts/check_temp -n -w 65 -c 75 --sensor cpu_thermal-virtual-0
|
|
|
|
hostgroup: device-type-pi4b-2g,device-type-pi4b-4g,device-type-pi4b-4g-storage
|
2021-12-08 21:34:32 -06:00
|
|
|
# Device role checks
|
|
|
|
# hypervisor (which is assumed to be Proxmox)
|
|
|
|
- name: PVE Unit pve-firewall.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit pve-firewall.service
|
|
|
|
hostgroup: role-hypervisor
|
|
|
|
- name: PVE Unit spiceproxy.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit spiceproxy.service
|
|
|
|
hostgroup: role-hypervisor
|
|
|
|
- name: PVE Unit pve-ha-crm.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit pve-ha-crm.service
|
|
|
|
hostgroup: role-hypervisor
|
|
|
|
- name: PVE Unit pvedaemon.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit pvedaemon.service
|
|
|
|
hostgroup: role-hypervisor
|
|
|
|
- name: PVE Unit pvefw-logger.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit pvefw-logger.service
|
|
|
|
hostgroup: role-hypervisor
|
|
|
|
- name: PVE Unit pveproxy.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit pveproxy.service
|
|
|
|
hostgroup: role-hypervisor
|
|
|
|
- name: PVE Unit pve-cluster.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit pve-cluster.service
|
|
|
|
hostgroup: role-hypervisor
|
|
|
|
- name: PVE Unit pvestatd.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit pvestatd.service
|
|
|
|
hostgroup: role-hypervisor
|
|
|
|
# Tag-specific checks
|
|
|
|
# ansible-pull
|
|
|
|
- name: Unit ansible-pull.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit ansible-pull.service
|
|
|
|
hostgroup: tag-ansible-pull
|
|
|
|
- name: Unit ansible-pull.timer
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit ansible-pull.timer
|
|
|
|
hostgroup: tag-ansible-pull
|
|
|
|
# docker
|
2022-02-13 10:11:45 -06:00
|
|
|
- name: Unit docker.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit docker.service
|
|
|
|
hostgroup: "ansible,!tag-no-docker"
|
|
|
|
- name: Docker Status
|
|
|
|
command: check_by_ssh!/usr/bin/sudo /usr/local/bin/monitoring-scripts/check_docker --no-ok --status running
|
|
|
|
hostgroup: tag-nagios-checkdocker
|
2021-12-08 21:34:32 -06:00
|
|
|
# nagios-checkpgsql
|
|
|
|
- name: PSQL
|
|
|
|
command: "check_by_ssh!/usr/lib/nagios/plugins/check_pgsql -H localhost -l nagios -p {{ secret_postgresql_monitoring_password }} -w 2 -c 5"
|
|
|
|
hostgroup: tag-nagios-checkpgsql
|
|
|
|
- name: PSQL Connections
|
|
|
|
command: "check_by_ssh!/usr/lib/nagios/plugins/check_pgsql -H localhost -l nagios -p {{ secret_postgresql_monitoring_password }} -w 2 -c 5 -q 'select (select count(*)::float used from pg_stat_activity) / (select setting::int max_conn from pg_settings where name=\\$\\$max_connections\\$\\$)' -W 0.7-0.8 -C 0.8-1.0"
|
|
|
|
hostgroup: tag-nagios-checkpgsql
|
2021-12-09 16:17:49 -06:00
|
|
|
# https://rhaas.blogspot.com/2020/02/useless-vacuuming.html
|
|
|
|
- name: PSQL Old Xacts
|
2021-12-09 16:23:59 -06:00
|
|
|
command: "check_by_ssh!/usr/lib/nagios/plugins/check_pgsql -H localhost -l nagios -p {{ secret_postgresql_monitoring_password }} -w 2 -c 5 -q 'select count(*)::float from pg_prepared_xacts where age(transaction) > 5000000' -W 500-1000 -C 1000-1000000"
|
2021-12-09 16:17:49 -06:00
|
|
|
hostgroup: tag-nagios-checkpgsql
|
2021-12-08 21:34:32 -06:00
|
|
|
- name: Unit postgresql.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit postgresql.service
|
|
|
|
hostgroup: tag-nagios-checkpgsql
|
|
|
|
# nagios-checkswap
|
|
|
|
- name: Swap Usage
|
|
|
|
command: check_by_ssh!/usr/lib/nagios/plugins/check_swap -w 20% -c 10%
|
|
|
|
hostgroup: tag-nagios-checkswap
|
|
|
|
# zerotier
|
|
|
|
- name: Unit zerotier-one.service
|
|
|
|
command: check_by_ssh!/usr/local/bin/monitoring-scripts/check_systemd_unit zerotier-one.service
|
2022-01-24 18:05:28 -06:00
|
|
|
hostgroup: tag-zt-personal
|
2022-03-04 21:29:24 -06:00
|
|
|
tags: [ nagios, no-auto ]
|
2021-09-18 00:04:05 -05:00
|
|
|
- role: ingress
|
|
|
|
vars:
|
|
|
|
ingress_servers:
|
2022-07-21 21:05:27 -05:00
|
|
|
# desu.ltd
|
|
|
|
- name: desu.ltd
|
|
|
|
proxy_pass: http://desultd:80
|
|
|
|
locations:
|
|
|
|
- location: /.well-known/matrix/server
|
|
|
|
contents: |
|
|
|
|
default_type application/json;
|
|
|
|
return 200 '{"m.server":"matrix.desu.ltd:443"}';
|
|
|
|
- location: /.well-known/matrix/client
|
|
|
|
contents: |
|
|
|
|
default_type application/json;
|
|
|
|
return 200 '{"m.homeserver":{"base_url":"https://matrix.desu.ltd"}}';
|
2022-09-03 17:27:17 -05:00
|
|
|
- name: firefly.desu.ltd
|
|
|
|
proxy_pass: http://firefly:8080
|
2022-09-03 18:19:51 -05:00
|
|
|
- name: firefly-importer.desu.ltd
|
2022-09-03 18:23:16 -05:00
|
|
|
directives:
|
2023-11-28 16:04:16 -06:00
|
|
|
- "allow {{ common_home_address }}/{{ common_home_address_mask }}"
|
2022-09-03 18:23:16 -05:00
|
|
|
- "deny all"
|
2022-09-03 18:19:51 -05:00
|
|
|
proxy_pass: http://firefly-importer:8080
|
2022-07-21 21:05:27 -05:00
|
|
|
- name: git.desu.ltd
|
|
|
|
proxy_pass: http://gitea:3000
|
2022-11-17 13:26:18 -06:00
|
|
|
- name: lr.desu.ltd
|
|
|
|
directives:
|
2023-11-28 16:04:16 -06:00
|
|
|
- "allow {{ common_home_address }}/{{ common_home_address_mask }}"
|
2022-11-17 13:26:18 -06:00
|
|
|
- "deny all"
|
|
|
|
proxy_pass: http://libreddit:8080
|
2022-07-21 21:05:27 -05:00
|
|
|
- name: matrix.desu.ltd
|
|
|
|
proxies:
|
|
|
|
- location: "~* ^(\/_matrix|\/_synapse|\/client|\/health)"
|
|
|
|
pass: http://synapse:8008
|
|
|
|
- location: /
|
|
|
|
pass: http://element:80
|
|
|
|
directives:
|
|
|
|
- "client_max_body_size 0"
|
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
|
2022-07-21 21:05:27 -05:00
|
|
|
- name: nc.desu.ltd
|
|
|
|
directives:
|
|
|
|
- "add_header Strict-Transport-Security \"max-age=31536000\""
|
|
|
|
- "client_max_body_size 0"
|
|
|
|
proxy_pass: http://nextcloud:80
|
|
|
|
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;
|
|
|
|
- name: netbox.desu.ltd
|
|
|
|
proxy_pass: http://netbox:8080
|
2022-07-23 17:30:14 -05:00
|
|
|
- name: vault.desu.ltd
|
|
|
|
proxy_pass: http://vaultwarden:80
|
2022-11-13 20:55:40 -06:00
|
|
|
# desu.ltd media bullshit
|
|
|
|
- name: prowlarr.media.desu.ltd
|
|
|
|
directives:
|
2023-11-28 16:04:16 -06:00
|
|
|
- "allow {{ common_home_address }}/{{ common_home_address_mask }}"
|
2022-11-13 20:55:40 -06:00
|
|
|
- "deny all"
|
|
|
|
proxy_pass: http://prowlarr:9696
|
|
|
|
- name: sonarr.media.desu.ltd
|
|
|
|
directives:
|
2023-11-28 16:04:16 -06:00
|
|
|
- "allow {{ common_home_address }}/{{ common_home_address_mask }}"
|
2022-11-13 20:55:40 -06:00
|
|
|
- "deny all"
|
|
|
|
proxy_pass: http://sonarr:8989
|
|
|
|
- name: radarr.media.desu.ltd
|
|
|
|
directives:
|
2023-11-28 16:04:16 -06:00
|
|
|
- "allow {{ common_home_address }}/{{ common_home_address_mask }}"
|
2022-11-13 20:55:40 -06:00
|
|
|
- "deny all"
|
|
|
|
proxy_pass: http://radarr:7878
|
|
|
|
- name: transmission.media.desu.ltd
|
|
|
|
directives:
|
2023-11-28 16:04:16 -06:00
|
|
|
- "allow {{ common_home_address }}/{{ common_home_address_mask }}"
|
2022-11-13 20:55:40 -06:00
|
|
|
- "deny all"
|
|
|
|
proxy_pass: http://transmission:9091
|
2022-07-21 21:05:27 -05:00
|
|
|
# 9iron
|
|
|
|
- name: www.9iron.club
|
|
|
|
directives:
|
|
|
|
- "return 301 $scheme://9iron.club$request_uri"
|
|
|
|
- name: 9iron.club
|
|
|
|
proxy_pass: http://9iron:80
|
|
|
|
- name: srv.9iron.club
|
|
|
|
proxy_pass: http://srv:80
|
2021-09-18 00:04:05 -05:00
|
|
|
tags: [ web, docker, ingress ]
|