zoukankan      html  css  js  c++  java
  • lnmp集成环境tp nginx vhost配置

    server {
                    listen       80;
                    server_name xxx;
                    charset utf-8;
                    root /home/wwwroot/axxx/public;
                    index  index.html index.htm index.php;
    
                    error_log logs/xxx.log;
                    location / {
                            if (!-e $request_filename) {
                                    rewrite ^(.*)$ /index.php?s=$1 last;
                                    break;
                            }
                    }
                    error_page   500 502 503 504  /50x.html;
                    location = /50x.html {
                            root   html;
                    }
    
                    location ~ [^/].php(/|$) {
                       fastcgi_pass   unix:/tmp/php-cgi.sock;
                       fastcgi_index index.php;
                       include fastcgi_params;
                       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;
                    }
                    location ~ .*.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
                            expires 30d;
                            access_log off;
                    }
                    location ~ .*.(js|css)?$ {
                            expires 7d;
                            access_log off;
               }
    }
    

      

  • 相关阅读:
    web自动化中的上传操作
    HTTP协议
    创建一个get测试
    下载安装
    unittest 介绍
    selenium常用操作
    video视频操作
    调用JavaScript
    下拉框操作
    弹窗操作
  • 原文地址:https://www.cnblogs.com/eleven24/p/7416393.html
Copyright © 2011-2022 走看看