Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webhippie/redirects
Simple pattern-based redirect server
https://github.com/webhippie/redirects
pattern redirects server webserver
Last synced: about 4 hours ago
JSON representation
Simple pattern-based redirect server
- Host: GitHub
- URL: https://github.com/webhippie/redirects
- Owner: webhippie
- License: apache-2.0
- Created: 2017-03-02T20:32:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-22T19:44:27.000Z (6 months ago)
- Last Synced: 2024-05-22T20:48:29.243Z (6 months ago)
- Topics: pattern, redirects, server, webserver
- Language: Go
- Homepage: https://webhippie.github.io/redirects/
- Size: 1.91 MB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Redirects
[![Current Tag](https://img.shields.io/github/v/tag/webhippie/redirects?sort=semver)](https://github.com/webhippie/redirects) [![Build Status](https://github.com/webhippie/redirects/actions/workflows/general.yml/badge.svg)](https://github.com/webhippie/redirects/actions) [![Join the Matrix chat at https://matrix.to/#/#webhippie:matrix.org](https://img.shields.io/badge/matrix-%23webhippie-7bc9a4.svg)](https://matrix.to/#/#webhippie:matrix.org) [![Go Reference](https://pkg.go.dev/badge/github.com/webhippie/redirects.svg)](https://pkg.go.dev/github.com/webhippie/redirects) [![Go Report Card](https://goreportcard.com/badge/github.com/webhippie/redirects)](https://goreportcard.com/report/github.com/webhippie/redirects) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/c33cdacbc6ed40beaf1f2a0a6d72718b)](https://www.codacy.com/gh/webhippie/redirects/dashboard?utm_source=github.com&utm_medium=referral&utm_content=webhippie/redirects&utm_campaign=Badge_Grade)
Redirects is a pretty simple pattern-based redirect server. It supports
different kinds of backends to store the patterns like JSON, YAML, TOML, Etcd,
Consul and Zookeeper. We are using it mostly as a default route for our reverse
proxy like [Træfɪk](https://traefik.io/).## Install
You can download prebuilt binaries from our [GitHub releases][releases], or you
can use our Docker images published on [Docker Hub][dockerhub] or [Quay][quay].
If you need further guidance how to install this take a look at our
[documentation][docs].## Development
Make sure you have a working Go environment, for further reference or a guide
take a look at the [install instructions][golang]. This project requires
Go >= v1.19, at least that's the version we are using.```console
git clone https://github.com/webhippie/redirects.git
cd redirectsmake generate build
./bin/redirects -h
```## Security
If you find a security issue please contact
[[email protected]](mailto:[email protected]) first.## Contributing
Fork -> Patch -> Push -> Pull Request
## Authors
- [Thomas Boerger](https://github.com/tboerger)
## License
Apache-2.0
## Copyright
```console
Copyright (c) 2017 Thomas Boerger
```[releases]: https://github.com/webhippie/redirects/releases
[dockerhub]: https://hub.docker.com/r/webhippie/redirects/tags/
[quay]: https://quay.io/repository/webhippie/redirects?tab=tags
[docs]: https://webhippie.github.io/redirects/#getting-started
[golang]: http://golang.org/doc/install.html