diff --git a/examples/https_server/README.rst b/examples/https_server/README.rst index 7d37c22..85b6395 100644 --- a/examples/https_server/README.rst +++ b/examples/https_server/README.rst @@ -10,9 +10,23 @@ Test with curl Verification of the certificate is turned off because I don't have a valid certificate in the test. +HTTPS GET +-------- + .. code-block:: text > curl --insecure https://192.168.0.7/index.html Hello from Pumbaa! > + +HTTPS POST +--------- + +.. code-block:: text + > curl --insecure --data "My post data." https://192.168.0.7/index.html + + Hello from Pumbaa! + Post data: "My post data." + + >