mod_fastcgi
has not been migrated to core alongside thehttpd*
packages (https://github.com/Homebrew/homebrew-php/pull/4500, Homebrew/homebrew-core#17726, Homebrew/homebrew-core#18732)- use
mod_proxy_fcgi
instead: http://httpd.apache.org/docs/2.4/mod/mod_proxy_fcgi.html
<FilesMatch "\.php$">
SetHandler "proxy:fcgi://localhost:9000/"
</FilesMatch>
<Proxy "fcgi://localhost:9000/" enablereuse=on max=10>
</Proxy>
- Issues when compiling ruby versions using rbenv + ruby_build (rbenv/ruby-build#377 (comment))
- use
CONFIGURE_OPTS
as a prefix when installing ruby versions
CONFIGURE_OPTS="--with-openssl-dir=`brew --prefix openssl`" rbenv install 2.3.1