Popularity
1.5
Declining
Activity
0.0
Stable
14
3
3

Programming language: Go
License: Do What The F*ck You Want To Public License
Tags: Networking    

llb alternatives and similar packages

Based on the "Networking" category.
Alternatively, view llb alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of llb or a related project?

Add another 'Networking' Package

README

llb Awesome codebeat badge

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

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.