Changes between Version 20 and Version 21 of install
- Timestamp:
- 2010-07-16T23:30:06Z (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
install
v20 v21 1 [[PageOutline]] 2 1 3 = 4. Installation = 2 4 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 == 16 6 17 7 === File Installation === … … 56 46 Remember to remove the /install directory for security reason if this is your production machine. 57 47 58 [[BR]] 59 {{{ 60 #!html 61 <h2><a name="linux">Linux Installation</a></h2> 62 }}} 48 49 == Linux Installation == 63 50 64 51 === File Installation === … … 70 57 {{{ 71 58 chmod -R 777 app/tmp 59 }}} 60 61 === Apache Configuration === 62 63 iPeer 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 69 Sample configuration segment: 70 {{{ 71 LoadModule rewrite_module modules/mod_rewrite.so 72 DirectoryIndex index.html index.html.var index.php 73 DocumentRoot "/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> 72 81 }}} 73 82