基於Xen的VPS ubuntu+nginx+php安裝教程

來源:互聯網
上載者:User

因為對系統效能要求很低,所以選擇了Link-1,2.5G硬碟、64M記憶體、100GB流量、1個獨立ip。
使用優惠碼9DMM7R可以有10%的折扣,vpslink.com。當然也可以找更大折扣的優惠碼,但是一般只限3個月內。
在vpslink後台安裝os,選擇ubuntu9.04,一分鐘後系統裝完了,ssh登入root。
工作1:配置web伺服器
為了偵錯工具,支援php的web伺服器還是需要的。記憶體太小所以拋棄了一直以來的apache,改用nginx,並且通過fast-cgi來支援php。vpslink提供了ubuntu的源鏡像,速度沒的說。

(1)一步到位,安裝nginx和php

apt-get install nginx php5-cli php5-cgi php5-mysql

(2)因為需要spawn-fcgi來啟動fast-cgi,所以安裝lighttpd,並設定為開機不啟動

apt-get install lighttpd

(3)配置fast-cgi

在/etc/init.d/下建立php-cgi的服務檔案,簡單起見,可以直接copy nginx的來修改

cp nginx php-cgi

vi php-cgi,修改對應參數

DAEMON=/usr/bin/spawn-fcgi
DAEMON_OPTS=”-a 127.0.0.1 -p 9000 -C 10 -u www-data -f /usr/bin/php-cgi”

修改stop時的動作為:pkill -9 php-cgi

儲存,退出。

(4) 配置nginx,開啟php支援

vi /etc/nginx/sites-available/default

index中增加index.php,並將相關php部分注釋取消,注意需要修改fastcgi_param的路徑

location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/nginx-default$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}

(5) 啟動服務

/etc/init.d/php-cgi start

/etc/init.d/nginx start

web伺服器就配置完了。

工作2:配置squidProxy 伺服器

這才是主要目的,要不也不用特意選擇Xen的vps了。下回再說。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.