Skip to content

Instantly share code, notes, and snippets.

@hlubek
Created July 2, 2013 20:32
Show Gist options
  • Select an option

  • Save hlubek/5912839 to your computer and use it in GitHub Desktop.

Select an option

Save hlubek/5912839 to your computer and use it in GitHub Desktop.
Apache VHost configuration
<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