Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kirillDanshin/llb
https://github.com/kirillDanshin/llb
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kirillDanshin/llb
- Owner: kirillDanshin
- License: wtfpl
- Created: 2016-02-21T06:30:17.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-04T04:13:06.000Z (almost 9 years ago)
- Last Synced: 2024-04-22T13:32:06.657Z (9 months ago)
- Language: Go
- Size: 82.9 MB
- Stars: 14
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-go - llb - It's a very simple but quick backend for proxy servers. Can be useful for fast redirection to predefined domain with zero memory allocation and fast response. (Networking / Transliteration)
- zero-alloc-awesome-go - llb - It's a very simple but quick backend for proxy servers. Can be useful for fast redirection to predefined domain with zero memory allocation and fast response. (Networking / Transliteration)
- awesome-go - llb - ★ 7 (Networking)
- awesome-go-extra - llb - 02-21T06:30:17Z|2016-04-04T04:13:06Z| (Networking / Uncategorized)
- awesome-go-zh - llb
README
# llb [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/avelino/awesome-go) [![codebeat badge](https://codebeat.co/badges/94797360-23ee-4228-b7ce-a5f4c2456433)](https://codebeat.co/projects/github-com-kirilldanshin-llb)
### What the f--k it is?
It's a very simple but quick backend for proxy servers. You can setup redirect to your main domain or just show `HTTP/1.1 404 Not Found` with zero memory allocation and very fast response. Also useful when you need to serve many redirects or not found errors but don't want any overheads.### Quick start
```sh
git clone [email protected]:kirillDanshin/llb.git
cd llb
go build
# run in background with default ports
# but custom redirect destination
((./llb -redirDest="https://google.com/" &)&)&
```Than setup your proxy to send any invalid requests like invalid host etc to this backend.