summarylogtreecommitdiffstats
path: root/apache.conf
diff options
context:
space:
mode:
authorMaxwell Pray2018-03-26 11:04:00 -0700
committerMaxwell Pray2018-03-26 11:04:00 -0700
commit8a3cab92746eec0c5d246f9e89ad3eacc8c9d414 (patch)
tree2288e10814635bb8de571589c01d7402c4dd28ee /apache.conf
downloadaur-8a3cab92746eec0c5d246f9e89ad3eacc8c9d414.tar.gz
Initial commit.
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..e0478fba9e10
--- /dev/null
+++ b/apache.conf
@@ -0,0 +1,13 @@
+# Required modules: dir_module, php71_module
+
+<IfModule dir_module>
+ <IfModule php71_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>