Nginx Resource

  1. Nginx中URL转换成小写
    首先编译安装nginx_lua_module模块
    server节:
  1. location / {
        if($uri ~ [A-Z]){
            rewrite_by_lua ‘return ngx.redirect(string.lower(ngx.var.uri),ngx.HTTP_MOVED_PERMANENTLY)‘;
        }
    }
  2. ngx_slowfs_cache(Nginx模块)
    nginx module which adds ability to cache static files. http://labs.frickle.com/nginx_ngx_slowfs_cache/
  3. nginx配置SSL实现服务器/客户端双向认证
    https://github.com/nategood/sleep-tight
  4. nginx_ensite
    A script to enable or disable a site in nginx. http://github.perusio.org/nginx_ensite
  5. echo-nginx-module(Nginx模块)
    An Nginx module for bringing the power of "echo", "sleep", "time" and more to Nginx‘s config filehttp://wiki.nginx.org/NginxHttpEchoModule
  6. nginx-upstream-fair
    The fair load balancer module for nginx http://nginx.localdomain.pl
  7. nginx-auth-ldap
    LDAP authentication module for nginx https://github.com/kvspb/nginx-auth-ldap
  8. Nginx Configs
    Collection of Nginx configs for most popular CMS/CMF/Frameworks based on PHP. https://github.com/elasticweb/nginx-configs
  9. VladGh.com-LEMP (https://github.com/vladgh/VladGh.com-LEMP)
    Latest NginX, MySQL, PHP (with APC and Suhosin) http://vladgh.com/blog/install-nginx-and-php-php-fpm-mysql-and-apc
  10. healthcheck_nginx_upstreams (https://github.com/cep21/healthcheck_nginx_upstreams)
    Health checks upstreams for nginx http://wiki.nginx.org/NginxHttpHealthcheckModule
  11. set-misc-nginx-module (https://github.com/openresty/set-misc-nginx-module)
    Various set_xxx directives added to nginx‘s rewrite module (md5/sha1, sql/json quoting, and many more)http://wiki.nginx.org/NginxHttpSetMiscModule
  12. ezhttp (https://github.com/centos-bz/ezhttp)
    The bash shell script stack for installation of Nginx OpenResty Tengine lua_nginx_module nginx_concat_module nginx_upload_module ngx_substitutions_filter_module Apache-2.2 Apache-2.4 MySQL-5.1 MySQL-5.5 MySQL-5.6 MySQL-5.7 PHP-5.2 PHP-5.3 PHP-5.4 PHP-5.5 PHP-5.6 ZendOptimizer ZendGuardLoader Xcache Eaccelerator Imagemagick IonCube Memcache Memca…
  13. https://github.com/yhager/nginx_drupal
    nginx configuration for use with Drupal - supports boost, multisite, static image servers and multiple environments
  14. nginx-module-vts
    Nginx virtual host traffic status module ( https://github.com/vozlt/nginx-module-vts )
  15. nginx-cache-purge (https://github.com/perusio/nginx-cache-purge)
    A bash script for deleting items from Nginx cache
  16. https://github.com/nicokaiser/nginx-websocket-proxy
  17. ngx-fancyindex
    Fancy indexes module for the Nginx web server (https://github.com/aperezdc/ngx-fancyindex)
  18. https://github.com/wangyan/lanmp
    Linux + Apache + Nginx + MySQL + PHP Auto Install Script https://wangyan.org/blog/lanmp.html
  19. https://github.com/lebinh/nginx-conf
    A collection of useful Nginx configuration snippets
  20. https://github.com/FRiCKLE/ngx_cache_purge
    nginx module which adds ability to purge content from FastCGI, proxy, SCGI and uWSGI caches.http://labs.frickle.com/nginx_ngx_cache_purge/
  21. https://github.com/lebinh/ngxtop
    Real-time metrics for nginx server
  22. https://github.com/pagespeed/ngx_pagespeed
    Automatic PageSpeed optimization module for Nginx http://ngxpagespeed.com/
  23. https://github.com/fcambus/nginx-resources
    A collection of resources covering Nginx, Nginx + Lua, OpenResty and Tengine http://www.cambus.net
  24. 官方分享的stream模块的简单配置demo ( https://zhangge.net/5037.html )
时间: 2024-12-22 02:42:53

Nginx Resource的相关文章

Samba & Nginx - Resource temporarily unavailable

先说说本人的开发环境:Win7 + Editplus + VMware(Centos+Samba+Nginx),用Samba在Centos上把web目录(如www)共享,然后在Win7上访问这个目录. 之所以这么用的原因有: 习惯了Windows,效率比较高 Editplus编辑器好用,相对于vi系列来说 代码测试环境和服务器运行环境无差异 用了这么些年,其实有个小问题一直困扰着我,在Win7下修改了某个.html文件,比如test.html ,然后通过http://vm/test.html访问

nginx - Resource interpreted as Stylesheet but transferred with MIME type text/plain

在部署前端项目的时候,网站跑起来了,可就是css样式没加载出来,查看css文件也已经load进来,被坑了3个小时终于发现问题所在: nginx.conf中添加下面两行配置即可,可参考nginx默认配置文件 include mime.types; default_type application/octet-stream; 如果不设置css文件就会被当作text/plain类型发送到浏览器.从而导致css样式无法显示

Nginx:worker_connections exceed open file resource limit排错

在打开nginx过程中,将 connections加大的时候Nginx发出警告: worker_connections exceed open file resource limit: 1024 此警告的问题是受限于Linux的最大文件数限制. 环境:centos7.0 64bit ulimit -n 查看用户打开的最大文件数:1024 此处的1024是每个进程打开的最大文件数,对于系统的最大限制: more /proc/sys/fs/file-max 98690 file-max是整机可以打开

启动smaba后nginx 11 resource temporarily unavailable[转载]

地址:http://thobian.info/?p=1367 题目可能有点标题党,毕竟下面要说到的只是nginx在比较特殊的环境才回出现的500情况. 先说下自己的开发环境: WEB服务器:nginx,搭在本地虚拟机(虚拟机是直接copy过来的) 开发工具:zend studio(这个其实没什么好说的) 虚拟机操作系统:centos 6.0 本地操作系统:win7 本地.虚拟机通过samba实现文件共享.直接在win下修改代码,同步到linux 这几天在修改代码时,发现每次对CSS.JS文件做修

nginx反向代理

1. 操作系统 CentOS 6.4 x86_64 2.软件版本 Nginx 1.4.2 3.实验拓扑 注,实验拓扑见下文. 4.安装yum源 1 2 3 [root @nginx ~]# rpm -ivh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm [[email protected] ~]# rpm -ivh http://download.fedoraproject.org/

【CNMP系列】CentOS7.0下安装Nginx服务

话步前言,CNMP之路,系统起步:http://www.cnblogs.com/riverdubu/p/6425028.html 这回我来讲解下CentOS7.0下如何安装和配置Nginx服务 Nginx的历史不在此赘述,轻量,快是它的特性.只是因为现在的模块没有达到apache的模块数量级,未来有超越apache的势头. 首先,我们要安装个必要的软件(上节提到过,可能有人并未安装) #yum install wget 因为Nginx以来与gcc的编译环境,所以,在mini centos中需要安

Nginx中worker_connections的问题

转载自http://hi.baidu.com/u_chen/item/560f1504a0a77367d45a1184 查看日志,有一个[warn]: 3660#0: 20000 worker_connections are more than open file resource limit: 1024 !! 原来安装好nginx之后,默认最大的并发数为1024,如果你的网站访问量过大,已经远远超过1024这个并发数,那你就要修改worker_connecions这个值 ,这个值越大,并发数也

Nginx初探

一.什么是Nginx 在nginx官方站点是这样描述它的(nginx.org): NGINX is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server. NGINX is known for its high performance, stability, rich feature set, simple configuration, a

2 nginx编译安装

一 安装nginx 1 下载 http://nginx.org/download/nginx-1.4.7.tar.gz 1.1 解压 # tar xf nginx-1.4.7.tar.gz 1.2 建立用户(为系统用户) # groupadd -r -g 110 nginx # useradd -r -g 110 -u 110 nginx 1.3 解决依赖关系 编译安装nginx需要事先需要安装开发包组"Development Tools"和 "Development Lib