Skip to content
forked from orlabs/orange

OpenResty/Nginx Gateway for API Monitoring and Management.

License

Notifications You must be signed in to change notification settings

wuyachao/orange

 
 

Repository files navigation

Orange

中文 English

API Gateway based on OpenResty.

Install

Clone the repo to local. Check the sample config file orange.conf first:

{
    "plugins": [ //available plugins. remove one if you do not need it.
        "stat", 
        "monitor", 
        "redirect", 
        "rewrite", 
        "basic_auth",
        "key_auth",
        "waf", 
        "divide"
    ],

    "store": "mysql",//only support `mysql` for now
    "store_mysql": { //config if you choose `mysql` store
        "timeout": 5000,
        "connect_config": {
            "host": "127.0.0.1",
            "port": 3306,
            "database": "orange",
            "user": "root",
            "password": "",
            "max_packet_size": 1048576
        },
        "pool_config": {
            "max_idle_timeout": 10000,
            "pool_size": 3
        },
        "desc": "mysql configuration"
    },

    "dashboard": {//dashboard config. if `store` is `mysql`, this will make sense
        "auth": false, //the dashboard UI should be authorized or not
        "session_secret": "y0ji4pdj61aaf3f11c2e65cd2263d3e7e5", // used to encrypt cookie
        "whitelist": [//url list that needn't be authorized
            "^/auth/login$",
            "^/error/$"
        ]
    },

    "api": {//api server authorization
        "auth_enable": true,//API should be authroized or not
        "credentials": [//HTTP Basic Auth config
            {
                "username":"api_username",
                "password":"api_password"
            }
        ]
    }
}

Import install/orange-${version} to MySQL and modify store_mysql as you want before you start Orange.

Then just type sh start.sh to start Orange. Maybe you should check the start script and customize it for your own need.

Documents

Find all about Orange on Documents Website. There is only a Chinese version for now.

Docker

http://hub.docker.com/r/syhily/orange maintained by @syhily

Contributors

See also

The architecture is highly inspired by Kong.

License

MIT

About

OpenResty/Nginx Gateway for API Monitoring and Management.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Lua 43.8%
  • JavaScript 28.5%
  • HTML 22.8%
  • CSS 3.9%
  • Other 1.0%