• Git For Windows 2.7.1 发布下载

    日期:

    Git For Windows 2.7.1 发布,该版本紧跟 Git 2.7.1 版本,主要是 bug 修复。 下载地址: http://www.git-scm.com/download/win...

  • Nginx 1.9.11 发布,支持动态模块和TCP解析DNS

    日期:

    Nginx 1.9.11 发布了,改进内容包括 *) Feature: resolver 支持 TCP。 *) Feature: 动态模块 *) Bugfix: 使用 HTTP/2 时,$request_length 值没有包括请求的大...

  • Nginx伪静态配置和常用Rewrite伪静态规则集锦

    日期:

    nginx里使用伪静态是直接在nginx.conf 中写规则的,并不需要像apache要开启写模块(mod_rewrite)才能进行伪静态。 nginx只需要打开nginx.conf配置文件,在server里面写需要的规则即可。 复制代码 代码如下: server { listen 80; server_name bbs.jb51.net; in...

  • nginx与PHP的安装配置

    日期:

    php安装: 1.下载PHPWindows 5.4.9 binaries and source ,解压到D:\phpweb\bin\php549目录下。 2.讲以下配置的#注释去掉,即: location ~ \.php$ { root D:/phpweb/wwwroot; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_F...

  • nginx伪静态规则

    日期:

    要将http://dede.com/index.php?t=3用伪静态规则改写成http://dede.com/t3.html,即可在nginx的conf/nginx.conf里面添加即可。 在location / {}里添加,如: location / { root D:/phpweb/wwwroot; index index.php index.html index.htm; rewrite ^(.*)/t(\...

  • nginx 伪静态配置方法

    日期:

    nginx里使用伪静态是直接在nginx.conf 中写规则的,并不需要像apache要开启写模块(mod_rewrite)才能进行伪静态 nginx只需要打开nginx.conf配置文件,在server里面写需要的规则即可 代码如下 server { listen 80; server_name bbs.o135.cn; index index.html...

  • 打造自己的 Python 编码环境

    日期:

    前言 趁着放假,重新配置了一下自己的Mac的编程环境,毕竟新年新气象嘛,主要是iTerm2、Zsh、Vim优化、Consolas字体、NoisyTyper,这些的相关配置。工欲利其事必先利其器,好的编码环境可以提升我们的打码的幸福感。好的编码环境包括美观(视觉),声音(听...

  • Apache Tomcat 6.0.45 发布

    日期:

    Apache Tomcat 6.0.45 发布,该版本修复了 6.0.44 的一些 bug ,值得关注的改进有: 升级 Tomcat Native Library 到 1.1.34 版本 不再支持 Intel Itanium CPU 完整的改进记录请看 http://tomcat.apache.org/tomcat-6.0-doc/changelog.html 下载地址: http:/...

  • Docker v1.10.1 发布,主要是 Bug 修复和维护

    日期:

    Docker v1.10.1 发布,详细改进记录包括: Runtime Do not stop daemon on migration hard failure #20156 Fix various issues with migration to content-addressable images #20058 Fix ZFS permission bug with user namespaces #20045 Do not leak /dev/...

  • VMware 容器解决方案一览

    日期:

    本文介绍了VMware最近宣布的两项容器解决方案,分别是vIC( 整合了vSphere的容器技术 vSphere Integrated Containers )和Photon平台,并与现有方案进行了对比。 最近,VMware宣布了几项关于容器的和如何构建 云原生应用 cloud-native application 的 技术和...