1
0
Fork 0

add arr services

add music and subs nginx proxies
This commit is contained in:
michael 2024-04-23 18:03:25 +12:00
parent 7df41b5c8d
commit afc0b57cfb
2 changed files with 24 additions and 2 deletions

View File

@ -8,12 +8,22 @@ nginx_sites:
type: proxy
upstream:
host: 127.0.0.1
port: 8081
port: 7878
- name: music.balsillie.house
type: proxy
upstream:
host: 127.0.0.1
port: 8686
- name: subs.balsillie.house
type: proxy
upstream:
host: 127.0.0.1
port: 6767
- name: index.balsillie.house
type: proxy
upstream:
host: 127.0.0.1
port: 8082
port: 9696
- name: torrent.balsillie.house
type: proxy
upstream:

View File

@ -6,3 +6,15 @@
name: "{{ arr_packages }}"
state: present
update_cache: true
- name: Start arr services
ansible.builtin.systemd:
name: "{{ item }}"
state: started
enabled: true
daemon_reload: true
loop:
- sonarr.service
- radarr.service
- lidarr.service
- prowlarr.service