diff --git a/examples/httpserver_cpython.py b/examples/httpserver_cpython.py index 292b931..326004d 100644 --- a/examples/httpserver_cpython.py +++ b/examples/httpserver_cpython.py @@ -19,6 +19,7 @@ def base(request: Request): return Response(request, "Hello from the CircuitPython HTTP Server!") + # Ports below 1024 are reserved for root user only. # If you want to run this example on a port below 1024, you need to run it as root (or with `sudo`). server.serve_forever("0.0.0.0", 5000)