python.raven.development

I’m currently working on a small project which is written in Python and based on MVC architecture. Here’s a glimpse of its Apache host config:

<VirtualHost *:80>

ServerName python.raven.com
ServerAdmin webmaster@python.raven.com
DocumentRoot /home/www/python/raven

# logs
ErrorLog /var/log/apache2/python.raven.com-error_log
CustomLog /var/log/apache2/python.raven.com-access_log combined

# set custom handler
<directory /home/www/python/raven>
   SetHandler mod_python
   PythonHandler index
   PythonDebug On
</directory>

# override
<locationmatch>
   SetHandler None
</locationmatch>
Alias /images   /home/www/python/raven/pub/images

</VirtualHost>

The framework’s core will be based on my previous MVC work (written in PHP).

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>