Re: [web2py] Re: Dream Host Deployment

2010-03-08 Thread Kuba Kucharski
yes, there is a mistake in my recipe should be: python web2py.py -i 127.0.0.1 -p 8001 -a "password" not: python web2py.py -i public_ip -p 8001 -a "password" here is a slice: http://www.web2pyslices.com/main/slices/take_slice/71 -- Kuba -- You received this message because you are subscri

Re: [web2py] Re: Dream Host Deployment

2010-03-07 Thread Frank Church
Unless you are on a Private Server you will not be able to use other ports besides port 80 nor should you be able to. Dreamhost IS shared hosting. An non standard ports are killed by Dreamhost once they are spotted On 7 March 2010 02:33, Jesse wrote: > Fabulous, > > That seemed to do the tricked

Re: [web2py] Re: Dream Host Deployment

2010-03-06 Thread Jason Brower
I wonder if this could be something that could be added to the web2py book as dreamhost is a big company. Maybe dreamhost would be willing to pay a little to have it done. :P BR, Jason On Sat, 2010-03-06 at 19:05 -0800, Jesse wrote: > I put the update on: > > http://wiki.dreamhost.com/Web2py >

Re: [web2py] Re: Dream Host Deployment

2010-03-06 Thread Kuba Kucharski
let's get you through it. for development I use two instances of web2py. one: python web2py.py -i public_ip -p 80 -a "" two: python web2py.py -i public_ip -p 8001 -a "password" one instance serves my beta testers and users, the second on runs just for me then I do: ssh -L 8001:127.0.0.1:800

Re: [web2py] Re: Dream Host Deployment

2010-03-04 Thread Thadeus Burgess
When I ran web2py on dreamhost I just edited my admin application and removed the checks for https. Of course your best option is to use a ssh tunnel, forward the port 80 of the server to your local port 8080 or something, since admin allows any localhost connections to access it will work. -Tha