summaryrefslogtreecommitdiffstats
path: root/php.ini
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-09-03 13:08:50 +0200
committerRemi Collet <remi@remirepo.net>2018-09-03 13:08:50 +0200
commit0b9e0562fcc5cc5628cbc98e9257214fd8c9b6ab (patch)
tree09e2b58726a61dc24fa3940066fe2b7ec9283397 /php.ini
parentb50b277e70c42ad4e1a34821f75f545b761038b5 (diff)
refresh configuration, from upstream
Diffstat (limited to 'php.ini')
-rw-r--r--php.ini23
1 files changed, 23 insertions, 0 deletions
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