summarylogtreecommitdiffstats
path: root/apache.conf
diff options
context:
space:
mode:
authorIliya Ivanov2019-04-08 18:39:02 +0300
committerIliya Ivanov2019-04-08 18:39:02 +0300
commit78b3f84ac93dd42821d7e033ad16b03e14d95584 (patch)
treea93ef605316d0a3744ef1d97b3e5c014c3907d13 /apache.conf
parent222df2bee7f241b970690d3bd9984b3ee53656f6 (diff)
downloadaur-78b3f84ac93dd42821d7e033ad16b03e14d95584.tar.gz
Update to PHP 7.3.4 & allow multicore compilation
Diffstat (limited to 'apache.conf')
-rw-r--r--apache.conf18
1 files changed, 8 insertions, 10 deletions
diff --git a/apache.conf b/apache.conf
index b516b5e66ffa..945574788ed4 100644
--- a/apache.conf
+++ b/apache.conf
@@ -1,13 +1,11 @@
# 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>
+ LoadModule php7_module modules/libphp7.so
+ DirectoryIndex index.php index.html
+ <FilesMatch "\.php$">
+ SetHandler application/x-httpd-php
+ </FilesMatch>
+ <FilesMatch "\.phps$">
+ SetHandler application/x-httpd-php-source
+ </FilesMatch>
</IfModule>