nginx + php +mysql (適配thinkphp)

來源:互聯網
上載者:User

標籤:style   blog   http   ar   io   os   sp   on   art   

Nginx 單機配置

http://tengine.taobao.org/book/index.html (taobao book)

http://ubuntuhandbook.org/index.php/2013/10/install-nginx-php5-mysql-lemp-ubuntu-1310/(nginx+php5+mysql)

http://blog.csdn.net/hursing/article/details/21527159 (中文)

:就幾個命令的問題:

     sudo apt-get install mysql-server mysql-client

     sudo apt-get install nginx
     sudo apt-get install php5-fpm

:PHP只需要用 php5-fpm

:配置自己的server,目錄等,支援thinkphp,目錄為/home/ftp:

      開啟:sudo vim /etc/nginx/sites-available/default

server {

        listen 80 default_server;

        listen [::]:80 default_server ipv6only=on;

                  root /home/ftp;

        index index.html index.htm index.php;

                  server_name localhost;

 

                  location / {

                if (!-e $request_filename){

                        rewrite ^(.*)$ /index.php?s=$1 last;

                        break;

                }

        }

 

 

                  location ~* \.php$ {

                fastcgi_pass unix:/var/run/php5-fpm.sock;

                fastcgi_index index.php;

                include fastcgi_params;

   

 

                set $path_info "" ;

                set $real_script_name $fastcgi_script_name;

                if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$" ){

                        set $real_script_name $1;

                        set $path_info $2;

                }

                fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;

                fastcgi_param SCRIPT_NAME $real_script_name;

                fastcgi_param PATH_INFO $path_info;

 

        }

 

nginx + php +mysql (適配thinkphp)

聯繫我們

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