Compare commits
2 commits
6ef385a581
...
0b6268475d
Author | SHA1 | Date | |
---|---|---|---|
Tristan Daniël Maat | 0b6268475d | ||
Tristan Daniël Maat | b6f39969cc |
|
@ -27,7 +27,7 @@ http {
|
||||||
#gzip on;
|
#gzip on;
|
||||||
|
|
||||||
upstream php-handler {
|
upstream php-handler {
|
||||||
server nextcloud-nextcloud:9000;
|
server localhost:9000;
|
||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
environment = {
|
environment = {
|
||||||
DB_TYPE = "postgres";
|
DB_TYPE = "postgres";
|
||||||
DB_HOST = "gitea-postgres:5432";
|
DB_HOST = "localhost:5432";
|
||||||
DB_NAME = "gitea";
|
DB_NAME = "gitea";
|
||||||
DB_USER = "gitea";
|
DB_USER = "gitea";
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
environment = {
|
environment = {
|
||||||
POSTGRES_DB = "nextcloud";
|
POSTGRES_DB = "nextcloud";
|
||||||
POSTGRES_USER = "nextcloud";
|
POSTGRES_USER = "nextcloud";
|
||||||
POSTGRES_HOST = "nextcloud-postgres";
|
POSTGRES_HOST = "localhost";
|
||||||
OVERWRITEPROTOCOL = "https";
|
OVERWRITEPROTOCOL = "https";
|
||||||
TRUSTED_PROXIES = "127.0.0.1";
|
TRUSTED_PROXIES = "127.0.0.1";
|
||||||
};
|
};
|
||||||
|
|
|
@ -9,7 +9,7 @@ let
|
||||||
url = "${mirror}/${version}/forge-${version}-installer.jar";
|
url = "${mirror}/${version}/forge-${version}-installer.jar";
|
||||||
curlOpts = "--globoff";
|
curlOpts = "--globoff";
|
||||||
# Forge doesn't seem to like newer shas
|
# Forge doesn't seem to like newer shas
|
||||||
sha1 = "e97821e5431bdcaa46e12048769922e2cdb5e2e1";
|
sha1 = "sha1-oHNpyrgHluRrAXWZJg9j+OInAwA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
unpackCmd = "mkdir -p src; cp $curSrc src/forge-${version}-installer.jar";
|
unpackCmd = "mkdir -p src; cp $curSrc src/forge-${version}-installer.jar";
|
||||||
|
|
Loading…
Reference in a new issue