diff options
author | Denis Vlasenko | 2009-03-18 20:00:46 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-03-18 20:00:46 +0000 |
commit | cbb4e61dd5431a48cf161489f02d46b77c997053 (patch) | |
tree | 29213ed6c82f7f01bb307a234b76fafae36cd278 | |
parent | 9f57cf6604638f14390effa01b51c8ad979f14cd (diff) | |
download | busybox-cbb4e61dd5431a48cf161489f02d46b77c997053.zip busybox-cbb4e61dd5431a48cf161489f02d46b77c997053.tar.gz |
httpd: add comment explaining why SERVER_NAME etc is not set.
-rw-r--r-- | networking/httpd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 01b56eb..6bf103c 100644 --- a/networking/httpd.c +++ b/networking/httpd.c @@ -1386,6 +1386,8 @@ static void send_cgi_and_exit( if (referer) setenv1("HTTP_REFERER", referer); setenv1("HTTP_HOST", host); /* set to "" if NULL */ + /* setenv1("SERVER_NAME", safe_gethostname()); - don't do this, + * just run "env SERVER_NAME=xyz httpd ..." instead */ xpiped_pair(fromCgi); xpiped_pair(toCgi); |