上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 33 下一页

2017年6月21日

nginx的proxy_pass到$host的问题

摘要: 做了反向代理后,由于代理服务器的nginx配置文件里有301跳转导致我的后端ajax程序有问题了,所以需要用到下面的规则过滤掉我的反向代理 if ( $uri !~ ^/bbs/(.*)/?$ ) { //判断如果不是我的服务 set $rule 1$rule; } if ( $uri ~* [/] 阅读全文

posted @ 2017-06-21 19:57 dongruiha 阅读(5930) 评论(0) 推荐(0) 编辑

js判断移动端是否安装某款app的多种方法

摘要: 转自: http://www.jb51.net/article/76585.htm 阅读全文

posted @ 2017-06-21 15:27 dongruiha 阅读(895) 评论(0) 推荐(0) 编辑

nginx反向代理cookie相关

摘要: http://blog.csdn.net/xiansky2015/article/details/51674997 http://www.jianshu.com/p/aeed2a56a3eb 阅读全文

posted @ 2017-06-21 15:20 dongruiha 阅读(241) 评论(0) 推荐(0) 编辑

2017年6月20日

手机通过fiddler调试页面

摘要: fiddler设置 首先我们打开Fiddler->Tools->Fiddler Options在Connection面板里将Allow remote computers to connect勾选起来,确定后,关闭Fiddler并重新打开Fiddler。 fiddler listens on port 阅读全文

posted @ 2017-06-20 17:15 dongruiha 阅读(172) 评论(0) 推荐(0) 编辑

2017年6月14日

nginx配置静态资源关闭访问日志

摘要: location ~ .*\.(css|js|gif|png|jpg|jpeg|bmp|swf)$ { root $root_path; access_log off; } 阅读全文

posted @ 2017-06-14 11:45 dongruiha 阅读(2473) 评论(0) 推荐(0) 编辑

nginx优化之request_time 和upstream_response_time差别

摘要: 1、request_time 官网描述:request processing time in seconds with a milliseconds resolution; time elapsed between the first bytes were read from the client 阅读全文

posted @ 2017-06-14 11:12 dongruiha 阅读(32293) 评论(2) 推荐(0) 编辑

php7与其他版本共存

摘要: 转自: https://zhangge.net/5088.html php7编译安装 https://zhangge.net/5075.html 阅读全文

posted @ 2017-06-14 09:57 dongruiha 阅读(188) 评论(0) 推荐(0) 编辑

2017年6月11日

centos源码安装mysql5.7

摘要: http://blog.csdn.net/langzi7758521/article/details/51435985 阅读全文

posted @ 2017-06-11 16:43 dongruiha 阅读(140) 评论(0) 推荐(0) 编辑

2017年6月7日

禁用composer update命令

摘要: composer update 命令会直接把依赖的包更新到最新,会导致整个项目代码都是没有经过测试的不稳定代码 所以一定要禁止使用该命令。 正确的做法是: 更新指定的包到指定的版本(高版本的包也可以更新到低版本) 不指定版本号的包安装: composer require "symfony/yaml" 阅读全文

posted @ 2017-06-07 16:59 dongruiha 阅读(1747) 评论(0) 推荐(1) 编辑

lumen怎么得到当前Uri的控制器、Action、路由规则

摘要: getRequestUri())[0]; // 所有的router $rts = app()->getRoutes(); // 当前route---做seo定制url时这个方法很有用 $routeInfo = app('request')->route(); $rows = []; foreach (... 阅读全文

posted @ 2017-06-07 14:26 dongruiha 阅读(3185) 评论(0) 推荐(0) 编辑

上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 33 下一页

导航