前言:百度出來的結果好坑爹,而且某些文章說別人坑爹,可他自己也坑爹。求業界良心啊。還是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