system: deny access to .core files from web GUI

This commit is contained in:
Franco Fichtner 2024-04-28 09:02:22 +02:00
parent c2d7cae6c3
commit 93e0d14748

View File

@ -350,10 +350,11 @@ mimetype.assign = (
## deny access the file-extensions
#
# ~ is for backupfiles from vi, emacs, joe, ...
# .inc is often used for code includes which should in general not be part
# of the document-root
url.access-deny = ( "~", ".inc" )
# ~ is for backupfiles from vi, emacs, joe, ...
# .core is for core dumps that may be created during PHP execution
# .inc is often used for code includes which should in general not be part
# of the document-root
url.access-deny = ( "~", , ".core", ".inc" )
######### Options that are good to be but not necessary to be changed #######