On 06/03/2011 04:50 PM, AJ wrote:
Well even if I do my Python stuff in virtualenv for development on a linode box, I'd like to know how to separate development/test environment to live/production.

Is the only solution "/...//IP whitelisting to block only those who you want to have access.../"?

Also, can I run multiple instances of same Django website on dev.website.com <http://dev.website.com>, test.website.com <http://test.website.com> and www.website.com <http://www.website.com>?


Yes, you can run a bunch of instances. To do this I use multiple user accounts. It's very easy to configure in nginx even if you only have one IP address.

As for the first question, it sounds like IP filtering may be the way, because the box is publicly accessible from the Internet. You could do something with the INTERNAL_IPS setting in settings.py.

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to