i cant think A blog belong to Mohammad Azwan bin Ali. Most of his writings are about his real life story, ideas, thoughts, moderate political views, computer, programming, tips & tricks, particularly in Linux…. and of course it includes some random unspecified crappy stuffs too! Don't forget to check Movies and Junkyard pages out!
note: most of entries is not suitable for faint hearted person or anybody with iq below 100.

Posts Tagged ‘setup’

ubuntu 9.10 nginx + php5

a simple nginx + php5 web server setup 1. first we download all neccessary packages sudo apt-get install nginx php5-cgi php5-mysql spawn-fcgi 2. add php-fastcgi init script sudo nano /etc/init.d/php-fastcgi cut and paste this script #!/bin/bash FAST_CGI="/usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -u www-data -g www-data -f /usr/bin/php-cgi" case "$1" in start) $FAST_CGI ;; stop) killall [...]