I intend to have many python with django applications on my server,
is it ok to have django with wsgi and many sites on the one server?
thanks!
|
I intend to have many python with django applications on my server, is it ok to have django with wsgi and many sites on the one server? thanks! |
|||
|
|
|
Yes you can have as many different django sites as your server can handle! You can set up separate virtual hosts pointing to the appropriate wsgi for each site you want. Remember just because it is possible doesn't mean it's a good idea, keep in mind the resources each site is consuming. |
|||
|
|