On Sun, 2007-11-11 at 04:44 -0800, RichardH wrote: > The problem: How do you best configure a Django project so that it can > be deployed in a production Intranet environment where you don't "own" > the domain root url, i.e. the Django project appears at > http://www.mydomain.com/some/url/path/to/django/project/name (and it > could change!)? However, at the same time I want to be able to run the > development environment at http://127.0.0.1/ and want any maintenance > overhead e.g. managing two sets of url.py files or changing any urls > stored in the database (flat files).
Since a database and flat files are two different things, I'm not sure what you mean about the overhead. At the moment, there's no brilliantly ideal solution to this problem. We'll fix it "soon", though. The ideal solution here means you make no changes whatsoever at the Django level and it will work in both locaitons. That is, Django will understand the web server root it is installed under. This is gradually creeping higher on my list, as I cross off existing items, so either I or somebody else will deal with it soon. One workaround for now is to define a variable somewhere that is either "/path/to/production/install/" for production or "" in development. Include this variable at the start of each of your root URL patterns. Since this involves adding something for each pattern if you do it by hand, you could write simple function to do it for you. You pass the function the same parameters you would normally put into a tuple in urlpatterns and it can return the data with the prefix appended. Regards, Malcolm -- A clear conscience is usually the sign of a bad memory. http://www.pointy-stick.com/blog/ --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---