码迷,mamicode.com
首页 >  
搜索关键字:nginx error    ( 54078个结果
nginx中的正则表达式
1、if指令所有的nginx内置变量都可以通过if指令和正则表达式来进行匹配,并且根据匹配结果进行一些操作,如下:if ($http_user_agent ~ MSIE) { rewrite ^(.*)$ /msie/$1 break;}if ($http_cookie ~* "id=([^...
分类:其他好文   时间:2014-05-01 13:08:26    阅读次数:418
异常
异常处理 运行时try{ 插卡 输入密码和金额 2000 余额 -= 2000 吐钱 2000}catch(吐钱异常 e){ 余额 += 2000}finally{ 取卡}异常的分类: Throwable Error:错误 严重底层 ...
分类:其他好文   时间:2014-05-01 13:01:14    阅读次数:290
Visual Studio 2005 移植 - WINVER,warning C4996, error LINK1104
Visual Studio 2005 移植 - WINVER,warning C4996, error LINK1104一、WINVER Compile result: WINVER not defined. Defaulting to 0x0502 (Windows Server 2003) wi...
分类:Windows程序   时间:2014-05-01 12:01:06    阅读次数:533
MySQL里创建外键时错误的解决
--MySQL里创建外键时错误的解决--------------------------------2014/04/30在MySQL里创建外键时(Alter table xxx add constraint fk_xxx foreign key),提示错误,但只提示很简单的信息:ERROR 1005...
分类:数据库   时间:2014-05-01 11:53:13    阅读次数:443
Nginx 完整配置说明
#用户 用户组 user www www; #工作进程,根据硬件调整,有人说几核cpu,就配几个,我觉得可以多一点 worker_processes 5; #错误日志 error_log logs/error.log; #pid文件位置 pid ...
分类:其他好文   时间:2014-05-01 11:20:40    阅读次数:431
解析nginx负载均衡
摘要:对于一个大型网站来说,负载均衡是永恒的话题。随着硬件技术的迅猛发展,越来越多的负载均衡硬件设备涌现出来,如F5 BIG-IP、Citrix NetScaler、Radware等等,虽然可以解决问题,但其高昂的价格却往往令人望而却步,因此负载均衡软件仍然是大部分公司的不二之选。nginx作为we...
分类:其他好文   时间:2014-05-01 03:02:33    阅读次数:382
如何终结服务器进程
windows下面可以主线程while loop接受input;但是觉得很丑。 linux没办法这样,可以用注册信号的办法。实现起来也不难: #include "stdio.h" #include "unistd.h" #include "signal.h" #include "error.h" volatile bool isStop = false; static void handl...
分类:其他好文   时间:2014-04-29 13:42:21    阅读次数:418
HDU-2850-Load Balancing(贪心)
Problem Description In the Wide Web World, Which web server was popular in web site? Apache, nginx, lighttpd? Baidu.com use Apache, and many web sites like 163.com use nginx. Why? Its configuration i...
分类:其他好文   时间:2014-04-29 13:24:20    阅读次数:355
让nginx完美支持Thinkphp的配置
习惯了用apache后,当第一次用nginx时,把原来的项目(thinkphp框架)部署在新服务器上的时候,惊呆了! 所有的URL模式下都不能正常运行,甚至连css,js文件都不能正常加载。 原因是ngibx不支持pathinfo 主要是需要配置nginx location / { root D:/wnmp/www; index ind...
分类:Web程序   时间:2014-04-29 13:11:20    阅读次数:680
彻底解决CHECK_NRPE: Error - Could not complete SSL handshake.
出现“CHECK_NRPE: Error - Could not complete SSL handshake.”的错误。       问题解决的步骤:    1. 确保openssh , openssl, openssl-devel版本一致。 在centOS 上,可以运行: yum install openssl openssl-devel     2. nagios监控端的允许地址和...
分类:其他好文   时间:2014-04-27 22:18:19    阅读次数:988
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!