Changed docker/plex to use direct connections
Signed-off-by: TuDatTr <tuan-dat.tran@tudattr.dev>pull/1/head
parent
00fd124e2d
commit
ced3ff35ad
|
@ -8,6 +8,7 @@ remote_domain: tudattr.dev
|
|||
rclone_config: "/root/.config/rclone/"
|
||||
puid: 1000
|
||||
pgid: 1000
|
||||
pk_path: "/mnt/veracrypt1/genesis"
|
||||
|
||||
|
||||
#
|
||||
|
@ -227,6 +228,7 @@ swag_remote_site_confs: "{{swag_config}}/nginx/site-confs/"
|
|||
#
|
||||
|
||||
plex_host: "plex"
|
||||
plex_ip: "172.16.69.12"
|
||||
plex_port: "32400"
|
||||
plex_config: "{{docker_data_dir}}/plex/config"
|
||||
plex_tv: "/media/series"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
ansible_user: "{{ user }}"
|
||||
ansible_host: 192.168.20.12
|
||||
ansible_port: 22
|
||||
ansible_ssh_private_key_file: /media/veracrypt1/genesis
|
||||
ansible_ssh_private_key_file: '{{ pk_path }}'
|
||||
ansible_become_pass: '{{ vault_aya01_tudattr_password }}'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
ansible_user: "{{ user }}"
|
||||
ansible_host: 202.61.207.139
|
||||
ansible_port: 22
|
||||
ansible_ssh_private_key_file: /media/veracrypt1/genesis
|
||||
ansible_ssh_private_key_file: '{{ pk_path }}'
|
||||
ansible_become_pass: '{{ vault_mii_tudattr_password }}'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
ansible_user: "{{ user }}"
|
||||
ansible_host: 192.168.20.11
|
||||
ansible_port: 22
|
||||
ansible_ssh_private_key_file: /media/veracrypt1/genesis
|
||||
ansible_ssh_private_key_file: '{{ pk_path }}'
|
||||
ansible_become_pass: '{{ vault_pi_tudattr_password }}'
|
||||
|
|
|
@ -181,6 +181,7 @@ services:
|
|||
image: lscr.io/linuxserver/plex:latest
|
||||
container_name: plex
|
||||
restart: always
|
||||
ip: {{ plex_ip }}
|
||||
networks:
|
||||
- net
|
||||
ports:
|
||||
|
|
|
@ -12,7 +12,7 @@ server {
|
|||
|
||||
location / {
|
||||
include /config/nginx/resolver.conf;
|
||||
proxy_pass http://plex.aya01.borg.land;
|
||||
proxy_pass http://{{ plex_ip | replace('.','-') }}.{{ vault_plex_server_id }}.plex.direct:{{ plex_port }}/
|
||||
|
||||
proxy_set_header X-Plex-Client-Identifier $http_x_plex_client_identifier;
|
||||
proxy_set_header X-Plex-Device $http_x_plex_device;
|
||||
|
|
Loading…
Reference in New Issue