From 6ef385a58131ced973fd8500eeaf82d4077c59e4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= <tm@tlater.net>
Date: Sat, 8 Jan 2022 00:27:01 +0000
Subject: [PATCH] Fix the nginx-nextcloud php upstream

---
 configuration/services/configs/nginx-nextcloud.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configuration/services/configs/nginx-nextcloud.conf b/configuration/services/configs/nginx-nextcloud.conf
index eec7bdb..7c6ad78 100644
--- a/configuration/services/configs/nginx-nextcloud.conf
+++ b/configuration/services/configs/nginx-nextcloud.conf
@@ -27,7 +27,7 @@ http {
     #gzip  on;
 
     upstream php-handler {
-        server nextcloud-nextcloud:9000;
+        server localhost:9000;
     }
 
     server {