diff options
| author | UltraQbik <no1skill@yandex.ru> | 2024-08-26 01:59:28 +0300 |
|---|---|---|
| committer | UltraQbik <no1skill@yandex.ru> | 2024-08-26 01:59:28 +0300 |
| commit | 65b85f409fef3c9fe45fe9184d446848ba3f1787 (patch) | |
| tree | a9c5fcb9d9c2207a4bb54d9edf54b719ae8cfda1 | |
| parent | 0097d879c50ee9535e8c1db1dde6f6192aeb8eff (diff) | |
| download | httpy-65b85f409fef3c9fe45fe9184d446848ba3f1787.tar.gz httpy-65b85f409fef3c9fe45fe9184d446848ba3f1787.zip | |
Update README.md
| -rw-r--r-- | README.md | 10 |
1 files 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 |