tags:

views:

37

answers:

1

I have a series of applications which use one model and are all under one site. Essentially a mix of the main website, and public and private api's. Is there a way to make different DJango apps use a different tcp port? I have not been able to find anything in the documentation about it.

A: 

Django docs. Optionally, use Apache to setup a subdomain for each application so you don't have to remember all the ports.

mcandre