Lemmiwinks is a simple HTTP proxy service built using ASP.NET Core. It forwards HTTP requests to a target URL and returns the response back to the client. This proxy service supports CORS, Authorization header forwarding, and SSL certificate validation bypass (for development environments). It is ideal for scenarios where you need to proxy requests without having to directly interact with the target service, and you want to manage authentication or bypass certain network restrictions.
Authorization header is present in the incoming request, it will be forwarded to the target URL.This Docker image can be easily deployed to run a proxy service in your environment. Simply pass the target URL as a query parameter and optionally include an Authorization header.
To pull and run the Docker container:
docker pull marcokreeft/lemmiwinks
docker run -d -p 5000:5000 marcokreeft/lemmiwinks
GET /proxy: Proxy requests to an external URL by passing the target URL as a query parameter.GET /proxy?url=http://example.com/api/data
Authorization: Bearer <Your-Token>
The proxy service forwards the request to the provided URL and returns the response content, status code, and headers.
Content type
Image
Digest
sha256:89820bd47…
Size
89.4 MB
Last updated
over 1 year ago
docker pull marcokreeft/lemmiwinks