zoukankan      html  css  js  c++  java
  • ubuntu+php5.6+redis+mysql5.5+nginx

    thinkphp :


    location / {
                    if (!-e $request_filename) {
                            rewrite ^(.*)$ /index.php?s=$1 last;
                            break;
                    }       
                    
            location / {
                    try_files $uri $uri/ =404;
            }       
            
    location ~ .php$ {
                    include snippets/fastcgi-php.conf;
            #       
            #       # With php7.0-cgi alone:
            #       fastcgi_pass 127.0.0.1:9000;
            #       # With php7.0-fpm:
                    fastcgi_pass unix:/run/php/php5.6-fpm.sock;
                           fastcgi_index  index.php;
               fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
               include        fastcgi_params;  
               
           }

  • 相关阅读:
    day_5.25py
    day_5.24py
    day_5.22 py
    numpy模块 03
    requests 模块例题示范
    logging模块
    typing 模块
    hashlib模块和hmac模块
    random模块
    time和datetime模块
  • 原文地址:https://www.cnblogs.com/legend-song/p/5523896.html
Copyright © 2011-2022 走看看