File suse-config.patch of Package keyserver
diff '' -ru a/config/default.js b/config/default.js
--- a/config/default.js 2022-07-16 22:26:49.000000000 +0200
+++ b/config/default.js 2022-07-16 22:45:00.596315562 +0200
@@ -1,3 +1,9 @@
+// Configuration file for the Mailvelope/SUSE Keyserver
+//
+// SUSE NOTE:
+// I recommend to configure the keyserver using /etc/sysconfig/keyserver - it is less error prone and comes with handy explanations for all the options! :-)
+// If you decide to edit this configuration file (/etc/keyserver/production.js) manually instead, note that sysconfig configuration may break.
+
'use strict';
module.exports = {
@@ -6,6 +12,7 @@
level: process.env.LOG_LEVEL || 'silly'
},
+ // SUSE note: use of Papertrail is currently not supported and hence not exposed using sysconfig
papertrail: {
host: process.env.PAPERTRAIL_HOST,
port: process.env.PAPERTRAIL_PORT
@@ -15,6 +22,7 @@
port: process.env.PORT || 8888,
bind: process.env.BIND || '127.0.0.1',
httpsUpgrade: process.env.HTTPS_UPGRADE,
+ // SUSE note: use of HPKP is deprecated and hence not exposed using sysconfig
httpsKeyPin: process.env.HTTPS_KEY_PIN,
httpsKeyPinBackup: process.env.HTTPS_KEY_PIN_BACKUP
},