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!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.