mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
c29dcfa2dd
ap/rpm-4.16.1.3-x86_64-4.txz: Rebuilt. Patched to handle non-compliant RPMs created by install4j. Thanks to alienBOB. d/poke-1.4-x86_64-1.txz: Upgraded. l/enchant-2.3.2-x86_64-1.txz: Upgraded. l/freetype-2.11.1-x86_64-1.txz: Upgraded. l/glib2-2.70.2-x86_64-1.txz: Upgraded. n/lynx-2.9.0dev.10-x86_64-1.txz: Upgraded. extra/php8/php8-8.1.0-x86_64-1.txz: Removed. extra/php80/php80-8.0.13-x86_64-1.txz: Added. extra/php81/php81-8.1.0-x86_64-1.txz: Added.
29 lines
1,020 B
Text
29 lines
1,020 B
Text
#
|
|
# 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>
|
|
|