mirror of
git://slackware.nl/current.git
synced 2024-12-29 10:25:00 +01:00
a019271253
patches/packages/mozilla-thunderbird-91.6.1-x86_64-1_slack15.0.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/91.6.1/releasenotes/ https://www.mozilla.org/en-US/security/advisories/mfsa2022-07/ https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0566 (* Security fix *) patches/packages/php-7.4.28-x86_64-1_slack15.0.txz: Upgraded. This update fixes bugs and a security issue: UAF due to php_filter_float() failing for ints. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-21708 (* Security fix *) extra/php80/php80-8.0.16-x86_64-1_slack15.0.txz: Upgraded. This update fixes bugs and a security issue: UAF due to php_filter_float() failing for ints. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-21708 (* Security fix *) extra/php81/php81-8.1.3-x86_64-1_slack15.0.txz: Upgraded. This update fixes bugs and a security issue: UAF due to php_filter_float() failing for ints. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-21708 (* Security fix *)
29 lines
1,022 B
Text
29 lines
1,022 B
Text
#
|
|
# mod_php - PHP Hypertext Preprocessor module
|
|
#
|
|
|
|
# Load the PHP module:
|
|
LoadModule php7_module lib/httpd/modules/libphp7.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>
|
|
|