From f58bfa26f96b662cea5b0d0a4fb37a964b18b52a Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Thu, 3 Dec 2020 15:23:33 +0100 Subject: [PATCH] Change phpCAS log file path on cas.log Because /tmp/ is not always the system one (=chrooted) and may be not writeable. --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 69e111b..171fa5f 100644 --- a/index.php +++ b/index.php @@ -33,7 +33,7 @@ $cas_servers=array( $default_cas_server=key($cas_servers); // PhpCAS log file -$phpCAS_logfile='/tmp/cas.log'; +$phpCAS_logfile='cas.log'; // Local app URL (auto-detect on first acces if null) $service_url=null;