From 0b9e0562fcc5cc5628cbc98e9257214fd8c9b6ab Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 3 Sep 2018 13:08:50 +0200 Subject: refresh configuration, from upstream --- php.ini | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'php.ini') diff --git a/php.ini b/php.ini index a5ad3a1..821b31e 100644 --- a/php.ini +++ b/php.ini @@ -585,6 +585,24 @@ html_errors = On ; Log errors to syslog (Event Log on Windows). ;error_log = syslog +; The syslog ident is a string which is prepended to every message logged +; to syslog. Only used when error_log is set to syslog. +;syslog.ident = php + +; The syslog facility is used to specify what type of program is logging +; the message. Only used when error_log is set to syslog. +;syslog.facility = user + +; Set this to disable filtering control characters (the default). +; Some loggers only accept NVT-ASCII, others accept anything that's not +; control characters. If your logger accepts everything, then no filtering +; is needed at all. +; Allowed values are: +; ascii (only base ASCII characters) +; no_ctrl (all characters except control characters) +; all (all characters) +;syslog.filter = ascii + ;windows.show_crt_warning ; Default value: 0 ; Development value: 0 @@ -1282,6 +1300,11 @@ session.cookie_domain = ; http://php.net/session.cookie-httponly session.cookie_httponly = +; Add SameSite attribute to cookie to help mitigate Cross-Site Request Forgery (CSRF/XSRF) +; Current valid values are "Lax" or "Strict" +; https://tools.ietf.org/html/draft-west-first-party-cookies-07 +session.cookie_samesite = + ; Handler used to serialize data. php is the standard serializer of PHP. ; http://php.net/session.serialize-handler session.serialize_handler = php -- cgit