安裝nginx,執行以下指令,很快完成
sudo apt-get install nginx
設定檔預設安裝位置:
-cgi模組conf: /etc/nginx/nginx.conf
bin:/usr/sbin/nginx
vhost: /etc/nginx/sites-enable/default
cgi-params: /etc/nginx/fastcgi-params
sudo apt-get install php5-cgi
安裝spawn-fcgi
如果系統沒有安裝gcc編譯環境,剛需要在安裝lighttpd之前要安裝build-essential工具包,執行下列指令:
php-cgi: /usr/bin/php-cgi php5-cgi: /usr/bin/php5-cgi cgi config: /usr/bin/cgi/php.ini
啟動fast_cgi:
sudo apt-get install build-essential
wget http://www.lighttpd.net/download/lighttpd-1.4.19.tar.gz
tar -xvf lighttpd-1.4.19.tar.gz
cd lighttpd-1.4.19/
sudo apt-get install libpcre3-dev
./configure –without-zlib –without-bzip2
make
sudo cp src/spawn-fcgi /usr/local/bin/spawn-fcgi
以上是Ubuntu下如何架設nginx和php伺服器的詳細內容。更多資訊請關注PHP中文網其他相關文章!spawn-fcgi -a 127.0.0.1 -p 9000 -c 5 -u www-data -g www-data -f /usr/bin/php-cgi