add arr services
add music and subs nginx proxies
This commit is contained in:
parent
7df41b5c8d
commit
afc0b57cfb
@ -8,12 +8,22 @@ nginx_sites:
|
|||||||
type: proxy
|
type: proxy
|
||||||
upstream:
|
upstream:
|
||||||
host: 127.0.0.1
|
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
|
- name: index.balsillie.house
|
||||||
type: proxy
|
type: proxy
|
||||||
upstream:
|
upstream:
|
||||||
host: 127.0.0.1
|
host: 127.0.0.1
|
||||||
port: 8082
|
port: 9696
|
||||||
- name: torrent.balsillie.house
|
- name: torrent.balsillie.house
|
||||||
type: proxy
|
type: proxy
|
||||||
upstream:
|
upstream:
|
||||||
|
@ -6,3 +6,15 @@
|
|||||||
name: "{{ arr_packages }}"
|
name: "{{ arr_packages }}"
|
||||||
state: present
|
state: present
|
||||||
update_cache: true
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user