summaryrefslogtreecommitdiffstats
path: root/testing/source/php/mod_php.conf.example
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-11-27 21:54:37 +0000
committer Eric Hameleers <alien@slackware.com>2023-11-27 23:29:08 +0100
commit334fa970fe0e38e292a9b0c40d21653b620d775b (patch)
tree1647fbc5ef7aa768e586a05da2123555a9ce8ef6 /testing/source/php/mod_php.conf.example
parent1cec992e7fade6ffaa82ade4efdab413996857e4 (diff)
downloadcurrent-334fa970fe0e38e292a9b0c40d21653b620d775b.tar.gz
current-334fa970fe0e38e292a9b0c40d21653b620d775b.tar.xz
Mon Nov 27 21:54:37 UTC 202320231127215437
l/libqalculate-4.9.0-x86_64-1.txz: Upgraded. l/mozilla-nss-3.95-x86_64-1.txz: Upgraded. l/v4l-utils-1.26.0-x86_64-2.txz: Rebuilt. Do not overwrite gconv-modules from glibc - instead, install it to gconv-modules.d/v4l-utils.conf. If your /usr/lib{,64}/gconv/gconv-modules was overwritten causing character conversion errors, reinstall the glibc package to fix this. Thanks to glennmcc. n/php-8.3.0-x86_64-1.txz: Upgraded. n/samba-4.19.3-x86_64-1.txz: Upgraded. This is a security release in order to address the following defect: An information leak vulnerability was discovered in Samba's LDAP server. Due to missing access control checks, an authenticated but unprivileged attacker could discover the names and preserved attributes of deleted objects in the LDAP store. Upgrading to this package will not prevent this information leak - if you are using Samba as an Active Directory Domain Controller, you will need to follow the instructions in the samba.org link given below. For more information, see: https://www.samba.org/samba/security/CVE-2018-14628.html https://www.cve.org/CVERecord?id=CVE-2018-14628 (* Security fix *) x/libwacom-2.9.0-x86_64-1.txz: Upgraded.
Diffstat (limited to 'testing/source/php/mod_php.conf.example')
-rw-r--r--testing/source/php/mod_php.conf.example29
1 files changed, 0 insertions, 29 deletions
diff --git a/testing/source/php/mod_php.conf.example b/testing/source/php/mod_php.conf.example
deleted file mode 100644
index 6ca1d3a87..000000000
--- a/testing/source/php/mod_php.conf.example
+++ /dev/null
@@ -1,29 +0,0 @@
-#
-# mod_php - PHP Hypertext Preprocessor module
-#
-
-# Load the PHP module:
-LoadModule php_module lib/httpd/modules/libphp.so
-
-# Tell Apache to feed all *.php files through PHP. If you'd like to
-# parse PHP embedded in files with different extensions, comment out
-# these lines and see the example below.
-<FilesMatch \.php$>
- SetHandler application/x-httpd-php
-</FilesMatch>
-
-# Tell Apache to feed all *.php, *.html, and *.htm files through
-# the PHP module. Add or subtract extensions here as desired. Please
-# note that running pages through PHP for no reason can be both slow
-# and insecure, so be sure to know what you're doing. It's a convenient
-# shortcut, but probably isn't suitible for high-traffic sites if you
-# write any of your pages in straight HTML.
-#<FilesMatch "\.(php|html|htm)$">
-# SetHandler application/x-httpd-php
-#</FilesMatch>
-
-# This will display PHP files in colored syntax form. Use with caution.
-#<FilesMatch "\.phps$">
-# SetHandler application/x-httpd-php-source
-#</FilesMatch>
-