[web2py] Re: Placing the database of a web2py app on the cloud

2012-11-14 Thread howesc
VP might very well be using an EC2 instance, but his DB might be an RDS instance or something that is not on the EC2 instancethe cross-server connection still needs to be setup in that case as well. :) On Wednesday, November 14, 2012 1:28:26 AM UTC-8, Tim Richardson wrote: > > I'm curious ab

[web2py] Re: Placing the database of a web2py app on the cloud

2012-11-14 Thread Tim Richardson
I'm curious about why you wouldn't not just deploy the app on the EC2 instance? --

[web2py] Re: Placing the database of a web2py app on the cloud

2012-11-13 Thread pbreit
You could also set up an ssh tunnel. Might be a touch more secure. On Monday, November 12, 2012 1:59:32 PM UTC-8, howesc wrote: > > if you are using a SQL instance (mysql, postgres etc), you'll just have to > use a fully qualified connection string rather than localhost. all the > rest should

[web2py] Re: Placing the database of a web2py app on the cloud

2012-11-13 Thread VP
Thanks guy. --

[web2py] Re: Placing the database of a web2py app on the cloud

2012-11-12 Thread howesc
if you are using a SQL instance (mysql, postgres etc), you'll just have to use a fully qualified connection string rather than localhost. all the rest should be the same (once all the pieces are setup and proper ports opened up). cfh On Monday, November 12, 2012 7:33:14 AM UTC-8, VP wrote: >

Re: [web2py] Re: Placing the database of a web2py app on the cloud

2012-11-12 Thread Bruno Rocha
I like Heroku Postgres: https://postgres.heroku.com/ --

[web2py] Re: Placing the database of a web2py app on the cloud

2012-11-12 Thread VP
If I put the database on Rackspace's Cloud Database, for example, how do I configure the web2py app to make the connection? Thanks, VP --