The following are the environment variables: CONTEXT_DOCUMENT_ROOT : /home/gmtyiais/public_html/nitsche.mobi CONTEXT_PREFIX : DOCUMENT_ROOT : /home/gmtyiais/public_html/nitsche.mobi GATEWAY_INTERFACE : CGI/1.1 HTTPS : on HTTP_ACCEPT : */* HTTP_HOST : www.nitsche.mobi HTTP_REFERER : http://nitsche.mobi/2014/stanford/cgi-bin/env.pl HTTP_USER_AGENT : Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) HTTP_X_HTTPS : 1 PATH : /usr/local/bin:/usr/bin:/bin QUERY_STRING : REMOTE_ADDR : 3.147.89.85 REMOTE_PORT : 9697 REQUEST_METHOD : GET REQUEST_SCHEME : https REQUEST_URI : /2014/stanford/cgi-bin/env.pl SCRIPT_FILENAME : /home/gmtyiais/public_html/nitsche.mobi/2014/stanford/cgi-bin/env.pl SCRIPT_NAME : /2014/stanford/cgi-bin/env.pl SCRIPT_URI : https://www.nitsche.mobi/2014/stanford/cgi-bin/env.pl SCRIPT_URL : /2014/stanford/cgi-bin/env.pl SERVER_ADDR : 142.11.203.174 SERVER_ADMIN : webmaster@nitsche.mobi.mydomain798824.com SERVER_NAME : www.nitsche.mobi SERVER_PORT : 443 SERVER_PROTOCOL : HTTP/2.0 SERVER_SIGNATURE : SERVER_SOFTWARE : Apache SSL_TLS_SNI : www.nitsche.mobi TZ : America/Los_Angeles UNIQUE_ID : Zi6Eq_JdHhKei0SIdoMTLgABEgU The following is the source of this programme: #!/usr/bin/perl # programme for showing enviroment variables print "Content-type: text/plain\n\n"; print "\n"; print "The following are the environment variables:\n"; @ListOfKeys = keys(%ENV); @SortedListOfKeys = sort(@ListOfKeys ); print "\n"; foreach (@SortedListOfKeys) { print $_; print " : "; print $ENV{$_}; print "\n"; } print "\n"; print "\n"; print "The following is the source of this programme:\n"; $filename = $ENV{'SCRIPT_FILENAME'}; open(FILE, "<$filename"); while() { print $_; } close(FILE); print "\n";