An open API service indexing awesome lists of open source software.

https://github.com/revolution-robotics/roadrunner-web-dispatch

Roadrunner web dispatcher
https://github.com/revolution-robotics/roadrunner-web-dispatch

dispatch roadrunner web

Last synced: 4 months ago
JSON representation

Roadrunner web dispatcher

Awesome Lists containing this project

README

          

# Roadrunner web dispatcher
The `revo-web-dispatch` command routes and/or redirects web queries to
port 80/443.

# Build
By default the Golang implementation of `revo-web-dispatch` builds for
GNU/Linux running on ARMv7. The requisite toolchain to compile the
source and compress the binary:

* a `go` compiler, and
* the `upx` packer.

Run:

```shell
git clone https://github.com/revolution-robotics/revo-web-dispatch.git
make -C revo-web-dispatch
```

To build for another architecture, e.g., GNU/Linux on AMD64, run:

```shell
GOOS=linux GOARCH=amd64 make -C revo-web-dispatch
```

For a full list of supported OSes and architectures, run:

```shell
go tool dist list
```