Skip to content

Instantly share code, notes, and snippets.

View mattxyzeth's full-sized avatar
👷
BUIDL

MattXYZ mattxyzeth

👷
BUIDL
View GitHub Profile
@mattxyzeth
mattxyzeth / httpd-php5.conf
Created November 21, 2011 17:30
Apache 2 php 5 configuration for localhost on os x
<IfModule php5_module>
AddType text/html .php .phps
AddHandler application/x-httpd-php .php
AddHandler application/x-httpd-php-source .phps
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
<IfModule dir_module>
DirectoryIndex index.php index.html
</IfModule>