Changes between Version 20 and Version 21 of install


Ignore:
Timestamp:
2010-07-16T23:30:06Z (14 years ago)
Author:
Pan Luo
Comment:

added apache configuration and page outlines

Legend:

Unmodified
Added
Removed
Modified
  • install

    v20 v21  
     1[[PageOutline]]
     2
    13= 4. Installation =
    24
    3 {{{
    4 #!html
    5 <ul>
    6 <li><a href="#windows">Windows Installation</a></li>
    7 <li><a href="#linux">Linux Installation</a></li>
    8 </ul>
    9 }}}
    10 
    11 
    12 {{{
    13 #!html
    14 <h2><a name="windows">Windows Installation</a></h2>
    15 }}}
     5== Windows Installation ==
    166
    177=== File Installation ===
     
    5646Remember to remove the /install directory for security reason if this is your production machine.
    5747
    58 [[BR]]
    59 {{{
    60 #!html
    61 <h2><a name="linux">Linux Installation</a></h2>
    62 }}}
     48
     49== Linux Installation ==
    6350
    6451=== File Installation ===
     
    7057{{{
    7158 chmod -R 777 app/tmp
     59}}}
     60
     61=== Apache Configuration ===
     62
     63iPeer can be installed under a directory of host root or install in a virtual host environment.
     64
     65 * mod_rewrite has to be enabled on apache instance (enabled by default)
     66 * Allow override for the iPeer directory: "!AllowOverride All"
     67 * Add index.php in !DirectoryIndex
     68
     69Sample configuration segment:
     70{{{
     71LoadModule rewrite_module modules/mod_rewrite.so
     72DirectoryIndex index.html index.html.var index.php
     73DocumentRoot "/var/www/html"
     74
     75<Directory "/var/www/html">
     76        Options Indexes FollowSymLinks MultiViews
     77        AllowOverride All
     78        Order allow,deny
     79        allow from all
     80</Directory>
    7281}}}
    7382