> > > Or if you mean weby's own httpd, look in httpserver.py for 8080
> >
> > $ python run.pyhttp://0.0.0.0:8080/
> > ^C
> > $ python run.py 8090http://0.0.0.0:8090/
>
> Web.run () may not set?
>

Try setting sys.argv[1] to '8090' or whatever port you want your app
to use. Works for me:

if __name__ == '__main__':
    import sys; sys.argv.append('7001')
    web.run(urls, globals(), web.reloader, session_mw)


-- 
Ryan Tracey
Citizen: The World

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to