Home

Awesome

VeryNginx

VeryNginx is a very powerful and friendly nginx .

中文文档

Notice

After v0.2 , The entry uri of control panel was moved to /verynginx/index.html

Description

VeryNginx is based on lua_nginx_module(openrestry). It implements advanced firewall(waf), access statistics and some other features. It strengthens the Nginx's functions, and provides a friendly Web interface.

VeryNginx online demo

User / Password: verynginx / verynginx

The full version of config guide can be found on: VeryNginx Wiki .

Nginx run status analyzing

Nginx status

Custom Action

VeryNginx supports custom actions, which can do a lot of things.

Custom action consists of two parts, Matcher and Action . Matcher is used to test whether a request meets the rule, Action is the logic you want to run.

The advantage of this design is that the Matcher includes all select rule, and can be reused, making use of rules to describe a very complex logic possible.

Matcher

A Matcher is used to select a part of all requests, a Matcher may contain one or more condition. The following conditions are currently supported:

When a request does not conflict with any of the conditions of the Matcher, the request will be selected by the Matcher

Action

Every Action refers to a Matcher , and will run on the requests selected by the Matcher

Now we have these Actions

Matcher can select requests by multiple conditions, so with Filter Action, we got a powerful waf. The waf can filter requests with complex rules and return special status code when it block a request.

VeryNginx presets some simple filter rules, which can prevent simple SQL injection, Git and SVN file disclosure, directory traversal attacks and common scanning tool.

VeryNginx Matcher

VeryNginx filter

Backend

Every Backend refers to a Matcher,and will handle the requests selected by the Matcher

Now we have these Backend

Request statistics

VeryNginx can record the request of URI, include these data of every URI:

request statistics

Installation

Install Nginx / OpenResty

VeryNginx is based on OpenResty, so you need to install it first. But don't warry, VeryNginx gives a script to do it automatically.

python install.py install

Just run this command, openresty and verynginx will be installed automatically.

Want using custom nginx?

VeryNginx can install openresty automatically so that you needn't install nginx(openresty) manually.

But if you want use a nginx compiled by you self, that also ok. You can see that for some help

Use-own-nginx

Usage

Edit nginx configuration file

The configuration file of VeryNginx is /opt/verynginx/openresty/nginx/conf/nginx.conf, that's a demo. It just can let verynginx run so that you can see the dashboard of verynginx. If you want do something really useful, you need edit that file and add your own nginx configuration into it.

This configuration file add three include command to embeded verynginx into original nginx( openresty )

These include command were placed outside a block, block http internal configuration, server configuration block inside, Remenber keep these three line when modifying. If you add a new Server configuration block or http configuration block, also need add suitable include line into it.

Start / Stop / Restart Service

#Start Service
/opt/verynginx/openresty/nginx/sbin/nginx

#Stop Service
/opt/verynginx/openresty/nginx/sbin/nginx -s stop

#Restart Service
/opt/verynginx/openresty/nginx/sbin/nginx -s reload

Configure VeryNginx on dashboard

After the service begin running, you can see server status and do config on dashboard.

The address of dashboard is http://{{your_machine_address}}/verynginx/index.html.

Default user and password is verynginx / verynginx. You should be able to work through all the options now.

The full version of config guide can be found in VeryNginx Wiki .

Trouble Shooting

If you have any problems during installation / configuration / use , you can refer the Trouble Shooting document.

Trouble Shooting

Tips

Update VeryNginx / OpenResty

Over time, VeryNginx own will evolve, and can also support newer version of OpenResty. New version of VeryNginx might support some new features or fix some old bugs. If you want to update locally installed VeryNginx, you just need pull the latest code from github to local, and run the following commands:

#Update VeryNginx
python install.py update verynginx

#Update OpenResty
python install.py update openresty

install.py will keep the old config.json and nginx.conf during update. So that you will not lost configuration after update.

Build VeryNginx docker Image

After cloning code to your local filesystem, you can run the following commands:

docker build -t verynginx .
docker run verynginx

Then you can navigate to your browser http://{{your_docker_machine_address}}/verynginx/index.html

Optionally you can run docker run -p xxxx:80 verynginx to map your container port 80 to your host's xxxx port

Donate

If you like VeryNginx, you can donate to support my development VeryNginx. With your support, I will be able to make VeryNginx better 😎.

PayPal

Support VeryNginx via PayPal

We Chat

Scan the QRcode to support VeryNginx.

<img title="WeChat QRcode" src="http://ww4.sinaimg.cn/mw690/3fcd0ed3jw1f6kecm1e3nj20f00emq59.jpg" width="200">

Thanks

VeryNginx thanks for the help

Enjoy~