Can I configure Zope to use port 80 instead of 8080 on my Win2K Pro workstation? How would I do that? Thanks, Mike
If you installed Zope as a service you will need to edit a registry entry at: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\zope250\Parameters Mine looks like this: "D:\python21\python.exe" "D:\zope250\z2.py" -S -X -w 18080 -W 18090 -f 18021 the relevant options for you are the -X -w 18080 -W 18090 -f 18021 ones: -X = turn off all servers -w = http port -W = webdav port -f = ftp port Alternatively, if you start it from the batch file you'll need to edit that using the information on optins that you see above. hth Phil ----- Original Message ----- From: Mike Merritt To: zope@zope.org Sent: Friday, March 01, 2002 3:49 PM Subject: [Zope] Port 80 Can I configure Zope to use port 80 instead of 8080 on my Win2K Pro workstation? How would I do that? Thanks, Mike
oops: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\zope250\Parameters should obviously be tailored to your installation: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\<myzope>\Parameters Phil ----- Original Message ----- From: "Phil Harris" <phil@harris-family.info> To: "Mike Merritt" <mmerritt@cteresource.org>; <zope@zope.org> Sent: Friday, March 01, 2002 4:00 PM Subject: Re: [Zope] Port 80
If you installed Zope as a service you will need to edit a registry entry at:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\zope250\Parameters
Mine looks like this:
"D:\python21\python.exe" "D:\zope250\z2.py" -S -X -w 18080 -W 18090 -f 18021
the relevant options for you are the -X -w 18080 -W 18090 -f 18021 ones:
-X = turn off all servers -w = http port -W = webdav port -f = ftp port
Alternatively, if you start it from the batch file you'll need to edit that using the information on optins that you see above.
hth
Phil ----- Original Message ----- From: Mike Merritt To: zope@zope.org Sent: Friday, March 01, 2002 3:49 PM Subject: [Zope] Port 80
Can I configure Zope to use port 80 instead of 8080 on my Win2K Pro workstation? How would I do that?
Thanks, Mike
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
If you have zope running as a server, you need to change the service entry in the registry Regards, Tom. ----- Original Message ----- From: "Chris Withers" <chrisw@nipltd.com> To: "Mike Merritt" <mmerritt@cteresource.org> Cc: <zope@zope.org> Sent: Friday, March 01, 2002 5:05 PM Subject: Re: [Zope] Port 80
Mike Merritt wrote:
Can I configure Zope to use port 80 instead of 8080 on my Win2K Pro workstation? How would I do that?
change the start script so it runs something like:
python z2.py -w 80
cheers,
Chris
PS: Don't send HTML mail to a non-HTML list!
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
[Mike Merritt]
Thanks, Phil and Chris. All set!
change the start script so it runs something like:
python z2.py -w 80
Note that some Windows 2000 systems will be running Personal Web Server or IIS on port 80. On those systems, y0u would need to change the PWS or IIS service so that it starts manually instead of automatically (and then stop the service if you don't want to reboot). This will prevent a port conflict for Zope. Cheers, Tom P
participants (5)
-
Chris Withers -
Mike Merritt -
Phil Harris -
Thomas B. Passin -
Tom Deprez