
【web】nginx
firedragonpzy
专注于iOScocos2d-xphpc/crubyjava等技术领域
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
centos下nginx服务开机启动 --self
1 在/etc/init.d/下建立nginxd文档 2 copy到nginxd文档下 [code="shell"]#!/bin/bash # nginx Startup script for the Nginx HTTP Server # it is v.0.0.2 version. # chkconfig: - 85 15 # description: Nginx is a hig...原创 2012-01-17 15:40:04 · 150 阅读 · 0 评论 -
nginx服务配置
[code="nginx"]#!/bin/bash # nginx Startup script for the Nginx HTTP Server # it is v.0.0.2 version. # chkconfig: - 85 15 # description: Nginx is a high-performance web and proxy server. # ...原创 2012-05-11 13:31:59 · 198 阅读 · 0 评论 -
nigix.conf配置
[code="nginx.conf"]user root; worker_processes 2; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events {...原创 2012-05-11 13:41:35 · 169 阅读 · 0 评论 -
413 Request Entity Too Large
[code="nginx"]编辑nginx.conf,找到http{}段,添加client_max_body_size 123m;即可[/code]原创 2012-04-17 19:17:29 · 129 阅读 · 0 评论 -
nginx优化
关于Nginx的一些优化(突破十万并发)[url]http://www.howtocn.org/nginx:%E9%85%8D%E7%BD%AE%E4%B8%80%E4%B8%AA%E9%AB%98%E6%80%A7%E8%83%BD%E7%9A%84nginx_fastcgi%E6%9C%8D%E5%8A%A1%E5%99%A8[/url]原创 2012-04-19 09:27:32 · 282 阅读 · 0 评论