-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

uvicorn


> Python ASGI HTTP Server, for asynchronous projects.

More information.


Run Python web app:

uvicorn {import.path:app_object}

Listen on port 8080 on localhost:

uvicorn --host {localhost} --port {8080} {import.path:app_object}

Turn on live reload:

uvicorn --reload {import.path:app_object}

Use 4 worker processes for handling requests:

uvicorn --workers {4} {import.path:app_object}

Run app over HTTPS:

uvicorn --ssl-certfile {cert.pem} --ssl-keyfile {key.pem} {import.path:app_object}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Tue May 21 02:41:37 2024