Debian's default twist supports HTTPS with great precision. (long ago there were two separate packages: one with one and without SSL, but this is not so)
You can send an OPTIONS request with curl as follows:
curl -i -X OPTIONS http:
You can also use -v instead of -i to see more results.
sending "OPTIONS *"
To send the usual * (instead of the path, see RFC 7231 ) using the OPTIONS method, you need to minimize 7.55.0 or later, as then, you can run the command line, for example:
curl -i --request-target "*" -X OPTIONS http:
Daniel Stenberg Jan 23 '13 at 21:23 2013-01-23 21:23
source share