host(koumakan): turn off unused ssl

Changed files
+6 -4
systems
koumakan
certificates
services
databases
+1 -1
systems/koumakan/certificates/default.nix
···
{
imports = [
./global.nix
-
./postgresql.nix
+
# ./postgresql.nix
./fediverse.nix
./bsky-pds.nix
./breezewiki.nix
+2
systems/koumakan/certificates/postgresql.nix
···
+
# WARN: unused. see default.nix
+
{ config, ... }:
{
# PostgreSQL only certificate
+3 -3
systems/koumakan/services/databases/postgresql.nix
···
password_encryption = "scram-sha-256";
log_line_prefix = "%m [%p] %h ";
-
ssl = "on";
-
ssl_cert_file = "${credsDir}/cert.pem";
-
ssl_key_file = "${credsDir}/key.pem";
+
# ssl = "on";
+
# ssl_cert_file = "${credsDir}/cert.pem";
+
# ssl_key_file = "${credsDir}/key.pem";
log_hostname = true;
datestyle = "iso, dmy";