From 55b09c0b4438ac6d66db4a856cb04eb72244d090 Mon Sep 17 00:00:00 2001 From: Mauro Torrez Date: Mon, 23 Sep 2019 15:14:25 -0300 Subject: [PATCH] use eumau/nextcloud image --- defaults/main.yml | 2 +- tasks/main.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index 464c6a1..7ad72c9 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -49,7 +49,7 @@ nextcloud_mail_from_address: "" nextcloud_mail_domain: "" # container -nextcloud_image: nextcloud +nextcloud_image: eumau/nextcloud nextcloud_container: nextcloud nextcloud_volume: nextcloud diff --git a/tasks/main.yml b/tasks/main.yml index b5bafe0..0778e69 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -93,7 +93,7 @@ proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; - proxy_pass http://{{ nextcloud_container }}; + proxy_pass http://{{ nextcloud_container }}:9000; } dest: "{{ nginx_location_mountpoint }}/nextcloud.conf" register: ngconf