php

Install PHP 5.5 via Homebrew

If you're a little annoyed that Homebrew removed homebrew/php and need to run PHP 5.5 for legacy reasons, or whatever, this tap can help you!

php、nginx做下载服务器配置 X-Accel-Redirect 文件静态转发

网络存储下载服务器需求配置 ## 缘由: “传统的Web服务器在处理文件下载的时候,总是先读入文件内容到应用程序内存,然后再把内存当中的内容发送给客户端浏览器。这种方式在应付当今大负载网站会消耗更多的服务器资源。sendfile是现代操作系统支持的一种高性能网络IO方式,操作系统内核的sendfile调用可以将文件内容直接推送到网卡的buffer当中,从而避免了Web服务器读写文件的开销,实现