Differences between revisions 3 and 4
Revision 3 as of 2011-07-04 08:56:32
Size: 1739
Editor: Praveen A
Comment:
Revision 4 as of 2011-07-04 08:59:43
Size: 1755
Editor: Praveen A
Comment:
Deletions are marked like this. Additions are marked like this.
Line 19: Line 19:
 DocumentRoot /var/www/in2011.mini/  DocumentRoot /var/www/in2011.mini/website/
Line 24: Line 24:
 <Directory /var/www/in2011.mini/>  <Directory /var/www/in2011.mini/website/>

This document aims to help folks maintaining MiniDebConf India website

 $ svn checkout svn://anonscm.debian.org/debconf-data/in2011.mini

  • For testing the site SSI needs to be enabled in Apache (see below for configuration)

  • Make an entry in /etc/hosts to resolve in2011.mini.debconf.org to 127.0.0.1 (localhost) as given below

127.0.1.1    in2011.mini.debconf.org

  • Configure a virtual host in apache for this. Create a file /etc/apache2/sites-available/minidebconfindia

<VirtualHost in2011.mini.debconf.org:80>
        ServerAdmin webmaster@localhost

        DocumentRoot /var/www/in2011.mini/website/
        <Directory />
                Options FollowSymLinks +Includes 
                AllowOverride None
        </Directory>
        <Directory /var/www/in2011.mini/website/>
                Options Indexes FollowSymLinks MultiViews +Includes 
                AllowOverride None
                Order allow,deny
                allow from all
        </Directory>
</VirtualHost>
  • Enable this site

 # a2ensite minidebconfindia 

  • Enable includes

 # a2enmod include 

  • Restart apache

 # /etc/init.d/apache2 restart 

  • Make your changes and test it at http://in2011.mini.debconf.org

  • After making all the changes send it as svn diff to in.mini list (currently Kartik Mistry and Praveen Arimbrathodiyil have commit access to this repo).