diff options
Diffstat (limited to 'man/https@.1')
-rw-r--r-- | man/https@.1 | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/man/https@.1 b/man/https@.1 new file mode 100644 index 0000000..eccd29f --- /dev/null +++ b/man/https@.1 @@ -0,0 +1,57 @@ +.TH https@ 1 +.SH NAME +https@ \- simple HTTPS client +.SH SYNOPSIS +.B https@ +.I host +[ +.I page +.I port +.I args +] +.SH DESCRIPTION +.B https@ +connects via the IP[v4|v6] protocol to +.I host +on +.I port +via TCP, and then attempts an SSL connection. It sends the request: + +.EX + GET /page HTTP/1.0 + Host: host +.EE + +and prints the body of the response, removing the CR from the end of each line. + +If +.I port +is not supplied, +.B https@ +uses TCP port 443 (HTTPS). + +If +.I page +is not supplied, +.B https@ +asks for / from +.IR host . + +If +.I host is not supplied, +.B https@ +connects to the local host. + +If +.I args +are supplied, they are passed to +.B https@ +unmodified. +.SH SEE ALSO +sslserver(1), +sslclient(1), +sslconnect(1), +sslcat(1), +tcp-environ(5). +.SH REFERENCE +http://httpd.apache.org/docs/2.4/mod/mod_ssl.html |