Code Monkey home page Code Monkey logo

ceryx's Introduction

Ceryx - Simple, but powerful Reverse Proxy

Ceryx is a dynamic reverse proxy based on NGINX OpenResty with an API.

Ceryx is used to provide public URLs to tens of thousands of projects at https://www.sourcelair.com.

Proxy

Ceryx is using NGINX OpenResty under the hood, in order to route requests based on the request host. The routing is made using the NGINX Lua module, which is querying a Redis backend for results.

API

Ceryx comes with a simple Flask web service, which supports REST operations on routes. You can dynamically create, update, and delete routes on the go using a REST client.

Configuration

Ceryx supports configuration using environment variables. The supported configuration options are the following:

  • CERYX_NAME: sets the API service name - defaults to ceryx
  • CERYX_DEBUG: enables debuging on the API service - defaults to true
  • CERYX_API_HOST: sets the host that the API will bind to - defaults to 127.0.0.1
  • CERYX_API_PORT: sets the port that the API will listen - defaults to 5555
  • CERYX_SERVER_NAME: the URL of the API service - default to None
  • CERYX_SECRET_KEY: the path of the secret key to use - defaults to None
  • CERYX_REDIS_HOST: the redis host to connect to - defaults to 127.0.0.1
  • CERYX_REDIS_PORT: the redis port to connect to - defaults to 6379
  • CERYX_REDIS_PREFIX: the redis prefix to use in keys - defaults to ceryx

Quick Bootstrap

Ceryx loves Docker, so you can easilly bootstrap Ceryx using the following command, given that you have already installed Docker and Docker Compose.

docker-compose up

You can also easily create your own production Docker compose file, using the services defined in base.yml file. An example Docker compose file could be the following:

# production.yml
proxy:
  extends:
    file: base.yml
    service: proxy
  ports:
   - "80:80"
  environment:
   - CERYX_REDIS_HOST=my.redis.host
api:
  extends:
    file: base.yml
    service: api
  ports:
   - "5555:5555"
  environment:
   - CERYX_REDIS_HOST=my.redis.host
   - CERYX_DEBUG=false
   - CERYX_SECRET_KEY=/path/to/production/secret

If you'd like to persist data, you can create the following file:

# dev.yml
proxy:
  extends:
    file: base.yml
    service: proxy
  build: proxy
  ports:
   - "8888:80"
   - "5555:5555"
  volumes:
   - proxy/nginx/conf:/opt/openresty/nginx/conf
   - proxy/nginx/lualib:/opt/openresty/nginx/lualib
   - proxy/nginx/sites-enabled:/opt/openresty/nginx/sites-enabled
   - proxy/nginx/sites-available:/opt/openresty/nginx/sites-available
api:
  extends:
    file: base.yml
    service: api
  build: api
  net: container:proxy
  volumes:
   - api/ceryx:/ceryx/ceryx
   - api/bin:/ceryx/bin
redis:
  image: redis
  net: container:proxy
  volumes:
   - data:/data
  command: redis-server --appendonly yes

The above Redis container will store data in the data directory of your project.

Development

Ceryx was developed as a private project for SourceLair PC. Initial development had different stages, having tproxy, Twisted and plain NGINX as a proxy server and backends ranging from MongoDB to etcd.

After a lot of experimentation, we have ended up in this solution and we'll keep developing this as an Open Source project. Feel free to make suggestions in the issues section in Github or open o pull request.

Dynamic SSL certificates

You can read more information on how to configure Ceryx with Dynamic SSL certificates here.

License

Ceryx is licensed under the "The MIT License (MIT)".

The MIT License (MIT)

Copyright (c) 2015 SourceLair PC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

ceryx's People

Contributors

akalipetis avatar blaskyy avatar coodix avatar parisk avatar smartlxh avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.