From ac8841cd50f117119f5c9a7c7112cab252b96cb1 Mon Sep 17 00:00:00 2001 From: Ronni Skansing Date: Thu, 30 Oct 2025 09:31:23 +0100 Subject: [PATCH] fix default file log path to stdout/errout Signed-off-by: Ronni Skansing --- backend/install/interactive.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/install/interactive.go b/backend/install/interactive.go index b206a02..e7995e3 100644 --- a/backend/install/interactive.go +++ b/backend/install/interactive.go @@ -317,8 +317,8 @@ func (m *ConfigModel) createAdvancedInputs() []InputWithHelp { {"TLS key path", "", "/path/to/key.pem", "path to TLS private key file (leave empty for auto TLS)"}, // logging configuration - {"Log file path", config.DefaultLogFilePath, "/var/log/phishingclub.log", "path to log file (empty for stdout)"}, - {"Error log path", config.DefaultErrLogFilePath, "/var/log/phishingclub-error.log", "path to error log file (empty for stderr)"}, + {"Log file path", config.DefaultLogFilePath, "", "path to log file (empty for stdout)"}, + {"Error log path", config.DefaultErrLogFilePath, "", "path to error log file (empty for stderr)"}, // security configuration {"Admin allowed IPs", "", "192.168.1.0/24,10.0.0.1", "comma-separated list of IP/CIDR ranges allowed to access admin (empty for all)"},