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
- Host: GitHub
- URL: https://github.com/revolution-robotics/roadrunner-web-dispatch
- Owner: revolution-robotics
- License: other
- Created: 2021-02-01T00:18:36.000Z (over 5 years ago)
- Default Branch: golang
- Last Pushed: 2021-06-07T06:50:54.000Z (about 5 years ago)
- Last Synced: 2025-10-24T01:56:54.067Z (8 months ago)
- Topics: dispatch, roadrunner, web
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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
```