From 9f02bcd00503b7e1f71e147faa759149b6c5234e Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Sun, 24 May 2020 01:26:11 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 274bcc3..71260d0 100644 --- a/README.md +++ b/README.md @@ -136,10 +136,10 @@ the request using environment variables: | --- | --- | --- | | GATEWAY_INTERFACE | CGI version, for compatability with CGI scripts | ``GCI/1.1`` | | GEMINI_URL | The raw URL string that was requested | ``gemini://mozz.us/cgi-bin/example.cgi/hello?world`` -| HOSTNAME | The server's hostname | ``mozz.us`` | | SCRIPT_NAME | The part of the URL's path that corresponds to the CGI script location | ``/cgi-bin/example.cgi`` | -| PATH_INFO | The remainder of the URL's path after the script name | ``/hello`` | +| PATH_INFO | The remainder of the URL's path after the CGI script location | ``/hello`` | | QUERY_STRING | The query string portion of the request URL | ``world`` | +| HOSTNAME | The server's hostname | ``mozz.us`` | | REMOTE_ADDR | The client IP address | ``10.10.0.2`` | | REMOTE_HOST | The client IP address, alias for REMOTE_ADDR | ``10.10.0.2`` | | SERVER_NAME | The server hostname, alias for HOSTNAME | ``mozz.us`` |