diff options
3 files changed, 7 insertions, 4 deletions
diff --git a/debian/etc-taler-auditor/taler/conf.d/auditor-system.conf b/debian/etc-taler-auditor/taler/conf.d/auditor-system.conf index a5b48627d..0cc933309 100644 --- a/debian/etc-taler-auditor/taler/conf.d/auditor-system.conf +++ b/debian/etc-taler-auditor/taler/conf.d/auditor-system.conf @@ -1,3 +1,5 @@ +# Configuration settings for system parameters of the auditor. +# # Read secret sections into configuration, but only # if we have permission to do so. @inline-secret@ auditordb-postgres ../secrets/auditor-db.secret.conf @@ -6,3 +8,6 @@ # Only supported database is Postgres right now. DATABASE = postgres + +SERVE = unix +UNIXPATH_MODE = 666 diff --git a/debian/etc-taler-exchange/taler/conf.d/exchange-business.conf b/debian/etc-taler-exchange/taler/conf.d/exchange-business.conf index d5938f2b1..c48cb5c96 100644 --- a/debian/etc-taler-exchange/taler/conf.d/exchange-business.conf +++ b/debian/etc-taler-exchange/taler/conf.d/exchange-business.conf @@ -28,9 +28,6 @@ ATTRIBUTE_ENCRYPTION_KEY = SET_ME_PLEASE # TERMS_ETAG = # PRIVACY_ETAG = -SERVE = unix -UNIXPATH_MODE = 666 - # Bank accounts used by the exchange should be specified here: [exchange-account-1] diff --git a/debian/etc-taler-exchange/taler/conf.d/exchange-system.conf b/debian/etc-taler-exchange/taler/conf.d/exchange-system.conf index 4ad7e06f6..af37f1913 100644 --- a/debian/etc-taler-exchange/taler/conf.d/exchange-system.conf +++ b/debian/etc-taler-exchange/taler/conf.d/exchange-system.conf @@ -9,5 +9,6 @@ # Only supported database is Postgres right now. DATABASE = postgres - +SERVE = unix +UNIXPATH_MODE = 666 |