> ----- Original Message ----- > From: Alexandre Dias > To: [EMAIL PROTECTED] > Sent: Tuesday, July 11, 2000 4:45 PM > Subject: HTTPS > I would like to use HTTPS on another port than 443... > How can I do it? *sigh* RTFM is good advice, but I know that sometimes one wonders where in the manual to look. The standard configuration looks something like this: <IfDefine SSL> Listen 80 Listen 443 </IfDefine> This assumes that 80 (the HTTP default) is your standard port, and 443 (the HTTPS default) is your standard SSL port. If, however, you don't have root permissions (as an example), you can do this: <IfDefine SSL> Listen 8080 Listen 8443 </IfDefine> This is a common practice, and will work fine (as long as you keep everything lined up -- make sure your Port and Listen commands for the standard http access are in fact watching 8080, and that any virtual host you want on the secure port knows it should be watching 8443 -- cross-port the commands, and I kinda doubt it will work. =o) *Read The Manual*, but for a quick reference check the http.conf file. Paul __________________________________________________ Do You Yahoo!? Get Yahoo! Mail � Free email you can access from anywhere! http://mail.yahoo.com/ ______________________________________________________________________ Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
