From 65b85f409fef3c9fe45fe9184d446848ba3f1787 Mon Sep 17 00:00:00 2001 From: UltraQbik Date: Mon, 26 Aug 2024 01:59:28 +0300 Subject: Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 22e05d2..b28d474 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ -# httpy -HTTP server written using standard python libraries +# HTTPy +- Small HTTP server written using standard python libraries +- Server supports HTTPS if you have the keys, which you could get from `Let's Encrypt` + +# Run using docker +- build image `docker build -t httpy .` +- start a new service `docker service create --name httpy_server -p 13700:13700 httpy` +- `-p A:B` is a port mapping from port host's port `13700 (A)` to container's port `13700 (B)`, change to the port you use -- cgit 1.4.1