Update to NixOS 21.11 #54

Manually merged
tlater merged 5 commits from tlater/21.11 into master 2022-01-08 02:20:03 +00:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit b6f39969cc - Show all commits

View file

@ -27,7 +27,7 @@ http {
#gzip on;
upstream php-handler {
server nextcloud-nextcloud:9000;
server localhost:9000;
}
server {

View file

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

View file

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