Sunday, March 04, 2012

Using PHP5-FPM With Apache2 On Ubuntu 11.10

http://www.howtoforge.com/using-php5-fpm-with-apache2-on-ubuntu-11.10



Could not reliably determine the server’s fully qualified domain name

sudo gedit /etc/apache2/httpd.conf

ServerName localhost
sudo /etc/init.d/apache2 restart

No comments:

Post a Comment

Git get all remote branches

git branch -r \ | grep -v '\->' \ | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" \ | while read remote; do \ git branc...