加载中
使用 golang 收集系统指标

common.go // copy code from github.com/shirou/gopsutil package sys import (   "bufio"   "os"   "strings" ) // ReadLines reads contents from file and splits them by new line. // A...

2015/05/21 07:26
2.4K
ngx_http_request_body_filter 函数解析

ngx_http_request_body_filter 是 nginx http doby 解析过程中的一个重要的函数,负责处理接收到的数据,本文深入分析此函数

python 虚拟环境搭建

# 环境 ubuntu server 14.04 1、安装 pip sudo apt-get install python-dev python-pip 2、安装 virtualenvwrapper,virtualenv sudo pip install virtualenvwrapper 3、配置 virtualenvwrap...

源码安装 vim

环境:ubuntu server 14.04 1 remove vim sudo apt-get remove vim vim-runtime gvim 2 download vim source code git clone https://github.com/b4winckler/vim.git 3 cd vim ./configure -...

部署 django

# 环境 ubuntu server 14.04 # nginx + uwsgi + django + virtualenv # 假定项目目录: /home/jack/django_web/mysite_bootstrap 1 配置 virtualenv workon py_env1 2 安装 django uwsgi pip...

django 入门例子

环境:ubuntu 14.04 server edition ## pip && virtualenv && django ## user: jack 1 配置 django 开发环境 参考 《Ubuntu django 开发环境搭建》 2 创建 django project cd /home/jack/dja...

Ubuntu django 开发环境搭建

# ubuntu server 14.04 1 基本环境配置 zsh build-essential 2 python 环境配置 2.1 安装 pip wget https://bootstrap.pypa.io/get-pip.py sudo python get-pip.py # 更新 pip # pip instal...

没有更多内容

加载失败,请刷新页面

返回顶部
顶部