Compare commits

..

1 commit

Author SHA1 Message Date
Tristan Daniël Maat 6ef385a581
Fix the nginx-nextcloud php upstream 2022-01-08 00:33:05 +00:00
3 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@
environment = {
DB_TYPE = "postgres";
DB_HOST = "localhost:5432";
DB_HOST = "gitea-postgres:5432";
DB_NAME = "gitea";
DB_USER = "gitea";

View file

@ -19,7 +19,7 @@
environment = {
POSTGRES_DB = "nextcloud";
POSTGRES_USER = "nextcloud";
POSTGRES_HOST = "localhost";
POSTGRES_HOST = "nextcloud-postgres";
OVERWRITEPROTOCOL = "https";
TRUSTED_PROXIES = "127.0.0.1";
};

View file

@ -9,7 +9,7 @@ let
url = "${mirror}/${version}/forge-${version}-installer.jar";
curlOpts = "--globoff";
# Forge doesn't seem to like newer shas
sha1 = "sha1-oHNpyrgHluRrAXWZJg9j+OInAwA=";
sha1 = "e97821e5431bdcaa46e12048769922e2cdb5e2e1";
};
unpackCmd = "mkdir -p src; cp $curSrc src/forge-${version}-installer.jar";