nixy
Nixy is a daemon that automatically configures Nginx for web services deployed on Apache Mesos and Marathon. It's an evolution of moxy but with a greatly improved feature set thanks to the Nginx reverse proxy.
Features:
- Reverse proxy and load balancer for your microservices running inside Mesos and Marathon
- Single binary with no other dependencies (except Nginx/Openresty)
- Written in Go to be blazingly fast and concurrent.
- All the features you get with Nginx:
- HTTP/TCP load balancing, HTTP/2 termination, websockets, SSL/TLS termination, caching/compression, authentication, media streaming, static file serving, etc.
- Zero downtime with Nginx fallback mechanism for sick backends and hot config reload.
- Easy to customize with templating.
- Statistics via statsd (successfull/failed updates, timings).
- Real-time updates via Marathon's event stream (Marathon v0.9.0), no need for callbacks.
- Support for Marathon HA cluster, auto detects sick endpoints.
- Automatic service discovery of all running tasks inside Mesos/Marathon, including health status.
- Basic auth support.
- Health check probe for errors in template or nginx configuration.
Compatibility
All versions of Marathon >= v0.9.0
Getting started
- Install nixy from pre-compiled packages. Check
releases
page. - Edit config (default on ubuntu is /etc/nixy.toml):
# nixy listening port port = "6000" # optional X-Proxy header name xproxy = "hostname" # marathon api marathon = ["http://example01:8080", "http://example02:8080"] # add all HA cluster nodes in priority order. user = "" # leave empty if no auth is required. pass = "" # nginx nginx_config = "/etc/nginx/nginx.conf" nginx_template = "/etc/nginx/nginx.tmpl" nginx_cmd = "nginx" # optinally openresty # statsd settings statsd = "localhost:8125" # optional for statistics
- Optionally edit the nginx template (default on ubuntu is /etc/nginx/nginx.tmpl)
- Install nginx or openresty and start the service.
- Start nixy! (service nixy start)
Using Nixy
Routing is based on the HTTP Host header matching app name by default.
This is easy to change and customize to your own choosing by editing the nginx.tmpl file. For example if you prefer routing based on uri instead of subdomains.
Example to access your apps app1,app2,app3 running inside Mesos and Marathon:
curl -i localhost/ -H 'Host: app1.example.com'
curl -i localhost/ -H 'Host: app2.example.com'
curl -i localhost/ -H 'Host: app3.example.com'
Assuming you have configured nginx on port 80.
To set a custom subdomain for an application
Deploy your app to Marathon setting a custom label called subdomain
:
"labels": {
"subdomain": "foobar"
},
This will override the Host
for that app and replace it with foobar
as the new subdomain/host.
It's also possible to add multiple subdomains to a single app, dividing by a space character.
"labels": {
"subdomain": "foo bar"
},
This will now match both foo
and bar
as the new subdomain/host.
Template
Nixy uses the standard Go (Golang) template package to generate its config. It's a powerful and easy to use language to fully customize the nginx config. The default template is meant to be a working base that adds some sane defaults for Nginx. Just extend it or modify to suite your environment the best.
Examples:
Add some ACL rules to block traffic from outside the internal network? Add a Label called internal
to your app and the following snippet to your template:
{{- if $app.Labels.internal}}
# allow anyone from local network.
allow 10.0.0.0/8;
# block everyone else
deny all;
{{- end }}
Optionally, add dynamically which network that have access to the same label:
{{- if $app.Labels.internal}}
# allow anyone from local network.
allow {{ $app.Labels.internal }};
# block everyone else
deny all;
{{- end }}
Add a custom http header based on an Environment variable inside your app?
{{- if $app.Env.APP_ENV}}
# could be dev, stage, production...
add_header X-Environment {{ $app.Env.APP_ENV }} always;
{{- end}}
If you are unsure of what variables you can use inside your template just do a GET /v1/config
and you will receive a json response of everything available. All labels and environment variables are available. Other options could be to enable websockets, HTTP/2, SSL/TLS, or to control ports, logging, load balancing method, or any other custom settings your applications need.
Nixy API
GET /
prints nixy version.GET /v1/config
list all variables available inside the template.GET /v1/reload
manually trigger a new config.GET /v1/health
Responds 200 OK if template, config and endpoints are working. Else 500 Server Error with reason.