Skip to content

Instantly share code, notes, and snippets.

@sushat4692
Created May 15, 2014 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sushat4692/0f03b603f2ce3aa1158a to your computer and use it in GitHub Desktop.
Save sushat4692/0f03b603f2ce3aa1158a to your computer and use it in GitHub Desktop.
Nginx Config file for HHVM Fastcgi
# ...
upstream php-backend {
# server unix:/path/to/php-fpm.socket; php-fpmの場合
# server unix:/var/run/hhvm/sock; socket経由だと何故か動かず…
server 127.0.0.1:9000;
}
# ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment