上一页 1 2 3 4 5 6 7 8 ··· 18 下一页

2014年3月17日

nginx php-fpm安装配置

摘要: 原文出处:http://www.nginx.cn/231.htmlnginx本身不能处理PHP,它只是个web服务器,当接收到请求后,如果是php请求,则发给php解释器处理,并把结果返回给客户端。nginx一般是把请求发fastcgi管理进程处理,fascgi管理进程选择cgi子进程处理结果并返回被nginx本文以php-fpm为例介绍如何使nginx支持PHP一、编译安装php-fpm什么是PHP-FPMPHP-FPM是一个PHP FastCGI管理器,是只用于PHP的,可以在 http://php-fpm.org/download下载得到.PHP-FPM其实是PHP源代码的一个补丁,旨在 阅读全文

posted @ 2014-03-17 01:18 argb 阅读(10609) 评论(0) 推荐(0) 编辑

PHP: APC Configuration and Usage Tips and Tricks

摘要: 原文链接:http://www.if-not-true-then-false.com/2012/php-apc-configuration-and-usage-tips-and-tricks/3/This PHP APC guide is divided on four different section:1. PHP APC Configuration2. Enable PHP APC Statistics3. Howto Use PHP APC User Cache4. PHP APC Performance Testing3. Howto Use PHP APC User Cache E 阅读全文

posted @ 2014-03-17 01:15 argb 阅读(272) 评论(0) 推荐(0) 编辑

Nginx and PHP-FPM Configuration and Optimizing Tips and Tricks

摘要: 原文链接:http://www.if-not-true-then-false.com/2011/nginx-and-php-fpm-configuration-and-optimizing-tips-and-tricks/I wrote before a guideHowto install Nginx/PHP-FPM on Fedora 20/19, CentOS/RHEL 6.5/5.10, but this guide is just installation guide and many cases Nginx and PHP-FPM basic configuration is go 阅读全文

posted @ 2014-03-17 01:08 argb 阅读(739) 评论(0) 推荐(0) 编辑

php-fpm 启动参数及重要配置详解

摘要: 约定几个目录/usr/local/php/sbin/php-fpm/usr/local/php/etc/php-fpm.conf/usr/local/php/etc/php.ini一,php-fpm的启动参数12345678910111213#测试php-fpm配置/usr/local/php/sbin/php-fpm -t/usr/local/php/sbin/php-fpm -c /usr/local/php/etc/php.ini -y /usr/local/php/etc/php-fpm.conf -t#启动php-fpm/usr/local/php/sbin/php-fpm/usr/ 阅读全文

posted @ 2014-03-17 01:07 argb 阅读(83891) 评论(6) 推荐(6) 编辑

2014年2月27日

ssl相关

摘要: http://www.sslshopper.com/http://www.ibaohost.com/node/134http://blog.wantssl.com/https://baoz.net/tag/ssl/http://blog.csdn.net/kunoy/article/details/8239653http://www.cyberciti.biz/faq/nginx-self-signed-certificate-tutorial-on-centos-redhat-linux/http://www.sslshopper.com/article-how-to-make-a-secu 阅读全文

posted @ 2014-02-27 15:30 argb 阅读(172) 评论(0) 推荐(0) 编辑

2014年2月17日

vagrant 打造开发环境

摘要: 1 vagranthttp://www.vagrantup.com/2 veeweehttps://github.com/jedi4ever/veewee3 vagrant boxeshttp://www.vagrantbox.es/ 阅读全文

posted @ 2014-02-17 22:14 argb 阅读(183) 评论(0) 推荐(0) 编辑

2014年2月12日

locale 详解

摘要: 关于locale的设定,为什么要设定locale关于locale的设定locale是国际化与本土化过程中的一个非常重要的概念,个人认为,对于中文用户来说,通常会涉及到的国际化或者本土化,大致包含三个方面:看中文,写中文,与window中文系统的兼容和通信。从实际经验上看来,locale的设定与看中文关系不大,但是与写中文,及window分区的挂载方式有很密切的关系。本人认为就像一个纯英文的Windows能够浏览中文,日文或者意大利文网页一样,你不需要设定locale就可以看中文。那么,为什么要设定locale呢?什么时候会用到locale呢?Tags: locale 设定 原因 解释一、为什么 阅读全文

posted @ 2014-02-12 21:06 argb 阅读(558) 评论(0) 推荐(0) 编辑

2014年1月29日

charles license key

摘要: Download:http://www.charlesproxy.com/(Official Web-site)Registered name:anthony ortolaniLicense key:a4036b2761c9583fdahttp://www.youtube.com/watch?v=bjxRvBhR6tk 阅读全文

posted @ 2014-01-29 15:52 argb 阅读(3314) 评论(0) 推荐(0) 编辑

2014年1月28日

mac系统终端的color scheme配置和vim配置

摘要: 一、配置终端solarizedhttp://ethanschoonover.com/solarized简单配置脚本:#!/bin/shgit clone git://github.com/altercation/solarized.gitcd solarizedosname=$(uname -s);case $osname in "Darwin" ) echo $osname cd osx-terminal.app-colors-solarized ./"Solarized Dark ansi.terminal" ;; "Li... 阅读全文

posted @ 2014-01-28 19:12 argb 阅读(14809) 评论(0) 推荐(0) 编辑

2014年1月27日

iptables

摘要: ptables简介iptables是基于内核的防火墙,功能非常强大,iptables内置了filter,nat和mangle三张表。filter负责过滤数据包,包括的规则链有,input,output和forward;nat则涉及到网络地址转换,包括的规则链有,prerouting,postrouting和output;mangle表则主要应用在修改数据包内容上,用来做流量整形的,默认的规则链有:INPUT,OUTPUT,NAT,POSTROUTING,PREROUTING;input匹配目的IP是本机的数据包,forward匹配流经本机的数据包,prerouting用来修改目的地址用来做DN 阅读全文

posted @ 2014-01-27 19:43 argb 阅读(31878) 评论(1) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 18 下一页

导航