Dear EasyEngine Community User.
This is my first thread for EasyEngine. I am highly satisfied with EasyEngine because of it’s well defined tutorial and community.
However some tutorial is out of dated, so I couldn’t configure well for the current situation.
Like many other people, I would like to optimize my website using EasyEngine, so I follow the Using HHVM with PHP-FPM Fallback(https://easyengine.io/tutorials/php/hhvm-with-fpm-fallback/) after clean Ubuntu 14.04 64bit.
I installed my website for using wp with hhvm and letsencrypt option ee site create example.com --wp --hhvm --user=admin --pass=password [email protected] --letsencrypt
In the “Use HHVM and adding PHP5-FPM as fallback:” Section, When I opened my Upstream.conf file, I can check the following information.
Common upstream settings
upstream php {
server unix:/run/php5-fpm.sock;
server 127.0.0.1:9000; } upstream debug {
Debug Pool
server 127.0.0.1:9001; }
upstream hhvm { server 127.0.0.1:8000; server 127.0.0.1:9000 backup; }
When I change the cons file like the tutorial, nginx couldn’t start properly.
Common upstream settings
upstream php {
server unix:/run/php5-fpm.sock;
server 127.0.0.1:8000; server 127.0.0.1:9000 backup; }
upstream debug {
Debug Pool
server 127.0.0.1:9001; }
There are some document in the google, however I couldn’t find the proper solution because I am using EasyEngine.
Do you know the beautiful solution for my situation?
Sincerely,
Honggi An