about summary refs log tree commit diff
path: root/README.md
blob: b28d474ef98f422705a55df94c58aac079f5d988 (plain)
1
2
3
4
5
6
7
8
# 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