3,21d2 < # < # usage: shttpd [OPTIONS] < # -d wwwroot (dflt: ) < # -D no directory listing < # -p listening port (dflt: 80 or 443) < # -l access log file (dflt: shttpd.log) < # -I inetd mode < # -e error log file < # -i index files (dflt: index.html,index.cgi) < # -c CGI file pattern (dflt: .cgi) < # -P global auth file < # -A edit .htpasswd file < # -u switch UID to user < # -N server domain name (auth realm) (dflt: mydomain.com) < # -m mime types file < # -v debug mode < # -s SSL certfileificate file (dflt: shttpd.pem) < # -S use SSL < # 23,27c4,11 < SHTTPD_PORT="81" < SHTTPD_USER="shttpd" < SHTTPD_DOCROOT="/var/www/localhost/htdocs" < SHTTPD_LOG="/var/log/shttpd/access.log" < SHTTPD_ERROR="/var/log/shttpd/error.log" --- > # shttpd now uses /etc/shttpd/shttpd.conf. > # This file is obsolette and will be removed later. > > #SHTTPD_PORT="81" > #SHTTPD_USER="shttpd" > #SHTTPD_DOCROOT="/var/www/localhost/htdocs" > #SHTTPD_LOG="/var/log/shttpd/access.log" > #SHTTPD_ERROR="/var/log/shttpd/error.log" 30,33c14,17 < SHTTPD_INDECIS="index.html,index.cgi" < SHTTPD_CGIEXT=".cgi" < SHTTPD_DOMAIN="localhost" < SHTTPD_MIME="/etc/mime.types" --- > #SHTTPD_INDECIS="index.html,index.cgi" > #SHTTPD_CGIEXT=".cgi" > #SHTTPD_DOMAIN="localhost" > #SHTTPD_MIME="/etc/mime.types"