summarylogtreecommitdiffstats
path: root/apache.conf
diff options
context:
space:
mode:
authorRaphaël Doursenaud2016-03-10 17:16:56 +0100
committerRaphaël Doursenaud2016-03-10 17:19:05 +0100
commit4f7f61157312b7f549483a38a79624b0867eda36 (patch)
tree7da1178fbb1bb5032f849ca56d383a833ec24b97 /apache.conf
downloadaur-4f7f61157312b7f549483a38a79624b0867eda36.tar.gz
v5.5.33
Package adapted from php56
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..c3ca0aad509e
--- /dev/null
+++ b/apache.conf
@@ -0,0 +1,13 @@
+# Required modules: dir_module, php5_module
+
+<IfModule dir_module>
+ <IfModule php5_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>