Created
July 2, 2013 20:32
-
-
Save hlubek/5912839 to your computer and use it in GitHub Desktop.
Apache VHost configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Directory "/Users/hlubek/Sites/"> | |
| Options ExecCGI Indexes MultiViews FollowSymLinks Includes | |
| AllowOverride All | |
| Order allow,deny | |
| Allow from all | |
| DirectoryIndex index.php | |
| UseCanonicalName off | |
| </Directory> | |
| <IfModule mod_fastcgi.c> | |
| FastCgiExternalServer /Users/hlubek/Sites/php-fpm.fcgi -host 127.0.0.1:9012 -idle-timeout 120 | |
| AddType application/x-httpd-fastphp5 .php | |
| Action application/x-httpd-fastphp5 /php-fpm.fcgi | |
| ScriptAlias /php-fpm.fcgi /Users/hlubek/Sites/php-fpm.fcgi | |
| </IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment