zoukankan      html  css  js  c++  java
  • nginx + php +mysql (适配thinkphp)

    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;

            }

  • 相关阅读:
    关于JVM的一些想法
    hashMap理解以及jdk1.7、jdk1.8其中区别
    各数据库如何实现自增
    dubbo遇坑记录
    mysql建表语句问题
    @Configuration
    生成一个唯一的ID
    门面模式
    关于getClass().getClassLoader()
    元素链
  • 原文地址:https://www.cnblogs.com/sujia/p/nginx.html
Copyright © 2011-2022 走看看