Workshop
The workshop consists of a set of questions and answers designed to solidify your understanding of the material covered in this hour. Try answering the questions before looking at the answers.
Quiz
1. | What type of directive should you add to the Apache httpd.conf file to implement a Django project? |
2. | Is mod_python required to be installed and active in the Apache server in order to deploy a Django project? |
3. | What type of directive should you add to the Apache httpd.conf file to implement multiple Django installations on the same Apache instance? |
Quiz Answers
1. | The <location> directive. |
2. | Yes. Since Django is written in Python, it requires that mod_python is installed and active on the Apache server. |
3. | The <VirtualHost> directive. |