Merge pull request #50115 from Ekleog/nextcloud-pgsql-unix

nextcloud module: document process for using with pgsql unix auth
This commit is contained in:
Jörg Thalheim 2018-11-10 14:37:18 +00:00 committed by GitHub
commit 4ec41a9a9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -171,7 +171,12 @@ in {
dbhost = mkOption {
type = types.nullOr types.str;
default = "localhost";
description = "Database host.";
description = ''
Database host.
Note: for using Unix authentication with PostgreSQL, this should be
set to <literal>/tmp</literal>.
'';
};
dbport = mkOption {
type = with types; nullOr (either int str);