Sign inSign up

marcokreeft/lemmiwinks

By marcokreeft

•Updated over 1 year ago

Image
0

568

marcokreeft/lemmiwinks repository overview

⁠Lemmiwinks - Proxy Service API

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.

⁠Key Features:
  • CORS Enabled: Allows cross-origin requests from any domain (for development purposes).
  • Authorization Forwarding: If an Authorization header is present in the incoming request, it will be forwarded to the target URL.
  • SSL Validation Bypass: SSL certificate validation is bypassed, making it suitable for development with self-signed certificates.
  • Flexible Proxy: Forwards HTTP requests to a specified target URL, including headers, status code, and content.
⁠Usage

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
⁠Endpoints
  • GET /proxy: Proxy requests to an external URL by passing the target URL as a query parameter.
⁠Example:
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.

⁠Security Warning:
  • SSL Validation: This application disables SSL validation by default (for development purposes only). It should not be used in production without appropriate security measures in place.

Tag summary

Content type

Image

Digest

sha256:89820bd47…

Size

89.4 MB

Last updated

over 1 year ago

docker pull marcokreeft/lemmiwinks