mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-30 15:45:12 +02:00
13 lines
318 B
ApacheConf
13 lines
318 B
ApacheConf
# Required modules: dir_module, php7_module
|
|
|
|
<IfModule dir_module>
|
|
<IfModule php7_module>
|
|
DirectoryIndex index.php index.html
|
|
<FilesMatch "\.php$">
|
|
SetHandler application/x-httpd-php
|
|
</FilesMatch>
|
|
<FilesMatch "\.phps$">
|
|
SetHandler application/x-httpd-php-source
|
|
</FilesMatch>
|
|
</IfModule>
|
|
</IfModule>
|