From 778f9017cab2a766916742579387e8f0001e1ff4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Sun, 14 Sep 2025 14:28:05 +0300 Subject: [PATCH] Fix overlapping ports --- files/nextcloud/config/apache2/ports.conf | 2 +- files/nextcloud/config/apache2/sites-enabled/000-default.conf | 2 +- files/nginx/conf/001-services.conf | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/files/nextcloud/config/apache2/ports.conf b/files/nextcloud/config/apache2/ports.conf index 3cc6764..b5360a3 100644 --- a/files/nextcloud/config/apache2/ports.conf +++ b/files/nextcloud/config/apache2/ports.conf @@ -1 +1 @@ -Listen 8080 +Listen 8090 diff --git a/files/nextcloud/config/apache2/sites-enabled/000-default.conf b/files/nextcloud/config/apache2/sites-enabled/000-default.conf index 36e681d..26a50ee 100644 --- a/files/nextcloud/config/apache2/sites-enabled/000-default.conf +++ b/files/nextcloud/config/apache2/sites-enabled/000-default.conf @@ -1,4 +1,4 @@ - + # The ServerName directive sets the request scheme, hostname and port that # the server uses to identify itself. This is used when creating # redirection URLs. In the context of virtual hosts, the ServerName diff --git a/files/nginx/conf/001-services.conf b/files/nginx/conf/001-services.conf index 9f13c32..a185f01 100644 --- a/files/nginx/conf/001-services.conf +++ b/files/nginx/conf/001-services.conf @@ -72,7 +72,7 @@ server { gunzip on; location / { - proxy_pass http://127.0.0.1:3001; + proxy_pass http://127.0.0.1:8080; proxy_set_header Host $http_host; proxy_intercept_errors on; proxy_http_version 1.1; @@ -115,7 +115,7 @@ server { gunzip on; location / { - proxy_pass http://127.0.0.1:3001; + proxy_pass http://127.0.0.1:8090; proxy_set_header Host $http_host; proxy_intercept_errors on; proxy_http_version 1.1;