
nginx
qq_ceiling
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
nginx配置虚拟主机
修改配置nginx.confworker_processes 10;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; sendfile on;原创 2017-03-03 14:57:01 · 224 阅读 · 0 评论 -
nginx 配置缓存压缩 expires gzip
server { listen 80; server_name www.abc.com; location / { root html/abc; index index.html index.htm; } location ~ .*\.(原创 2017-03-04 16:16:09 · 277 阅读 · 0 评论 -
nginx 增加上传限制
打开ngnix.conf在http { }中加入以下client_max_body_size 10m;原创 2017-03-09 14:58:15 · 207 阅读 · 0 评论 -
使用nginx实现LB集群
vi nginx.confworker_processes 1;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; sendfile on; keepal原创 2017-06-21 17:16:06 · 3310 阅读 · 0 评论 -
nginx 安装教程
1、安装所需rpmqn yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel2、安装 pcre-8.39.zip 包./configure --prefix=/usr/local/pcremake && make install3、添加用户useradd nginx -s原创 2017-02-28 10:21:31 · 240 阅读 · 0 评论