Play Framework
From KevinWiki
(Difference between revisions)
		
		
Kevin  (Talk | contribs)
(Created page with "Category:Scala = Play Framework = == Troubleshooting == === Port Confliction with PHP's === * Change php fpm port: Edit <code>/etc/php5/fpm/pool.d/www.conf</code> <pre> # Ch...")
(Created page with "Category:Scala = Play Framework = == Troubleshooting == === Port Confliction with PHP's === * Change php fpm port: Edit <code>/etc/php5/fpm/pool.d/www.conf</code> <pre> # Ch...")
Latest revision as of 13:28, 9 June 2013
Play Framework
Troubleshooting
Port Confliction with PHP's
-  Change php fpm port: Edit 
/etc/php5/fpm/pool.d/www.conf 
# Change from listen = 127.0.0.1:9000 # To (some other port) listen = 127.0.0.1:8888
- Also change Nginx configuration file
 
From
    fastcgi_pass 127.0.0.1:9000;
To
    fastcgi_pass 127.0.0.1:8999;