Author: Tim Email: [EMAIL PROTECTED] Message: I've come up with a workaround for use with FreeVSD, however it required a code change and I'm not happy with it. It would be much nicer if there was some way to do this with an alias directive or something.
Anyway, in case anyone cares, here's the code change needed to get this to work on local FreeVSD virtual private server configurations. The code to change is in parseurl.c Change these two lines: if(!strcasecmp(url->schema,"http"))url->default_port=80; if(!strcasecmp(url->schema,"https"))url->default_port=443; To this: if(!strcasecmp(url->schema,"http"))url->default_port=8080; if(!strcasecmp(url->schema,"https"))url->default_port=8443; This will break any indexing you do off of the site, but it does allow indexing within a FreeVSD site. -t Reply: <http://www.mnogosearch.org/board/message.php?id=3887> ___________________________________________ If you want to unsubscribe send "unsubscribe general" to [EMAIL PROTECTED]
