Ubuntu+Nginx+PHP的最簡搭建方法

來源:互聯網
上載者:User

前言:百度出來的結果好坑爹,而且某些文章說別人坑爹,可他自己也坑爹。求業界良心啊。還是Google靠譜。


系統內容:Ubuntu 13 和 Linux Mint 15都通過。

預設安裝的是nginx 1.2.5,php5.4.9


先安裝:

sudo apt-get install nginx php5-fpm

我是在新安裝的Ubuntu13上測試通過的,真的只安裝這兩個東西就夠了。


然後編輯設定檔。

sudo gedit /etc/nginx/site-available/default

注意,如果是用gedit而不是用vi編輯,那應該編輯site-available下的default檔案,如果是編輯site-enabled下的default,因為gedit儲存時預設會產生一個“default~”的備份,這個備份也會被nginx當成啟用的設定檔而出錯無法啟動。保險的做法是,編輯site-available下的檔案後仍手動刪除備份檔案。

找到location ~ \.php$的地方,5行取消注釋,變成這樣:

location ~ \.php$ {#fastcgi_split_path_info ^(.+\.php)(/.+)$;## NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini### With php5-cgi alone:#fastcgi_pass 127.0.0.1:9000;## With php5-fpm:fastcgi_pass unix:/var/run/php5-fpm.sock;fastcgi_index index.php;include fastcgi_params;}
這就成了!

啟動nginx:

sudo service nginx start

擴充:

1. default檔案中,找到
index index.html index.html;

這行,加入成

index index.html index.htm index.php;

這就可以用php檔案做預設首頁

2.default檔案中,在server{}指示符的 location / {} 指示符內,加入

autoindex on;

當檔案夾內沒有index檔案,就會自動索引檔案。

3. server{} 指示符的 root 行是檔案根目錄,自行修改就能把那個檔案夾作為網站根目錄


參考:http://ubuntuhandbook.org/index.php/2013/10/install-nginx-php5-mysql-lemp-ubuntu-1310/

轉載請註明出處:http://blog.csdn.net/hursing

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.