summarylogtreecommitdiffstats
path: root/apache.conf
diff options
context:
space:
mode:
authorMatt Harrison2019-12-23 13:56:06 -0500
committerMatt Harrison2019-12-23 13:56:06 -0500
commit3d1a6721c14b5923e8b022df6c19be4db44b9c46 (patch)
tree6360c02576fa4896b472c55958dd63d461123b16 /apache.conf
downloadaur-3d1a6721c14b5923e8b022df6c19be4db44b9c46.tar.gz
Initial upload: php 7.3.12-1
Pulled from main php package at last change before 7.4
Diffstat (limited to 'apache.conf')
-rw-r--r--apache.conf13
1 files changed, 13 insertions, 0 deletions
diff --git a/apache.conf b/apache.conf
new file mode 100644
index 000000000000..b516b5e66ffa
--- /dev/null
+++ b/apache.conf
@@ -0,0 +1,13 @@
+# 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>