Changes between Version 21 and Version 22 of install
- Timestamp:
- 2010-07-26T17:37:17Z (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
install
v21 v22 74 74 75 75 <Directory "/var/www/html"> 76 Options Indexes FollowSymLinks MultiViews76 Options Indexes FollowSymLinks 77 77 AllowOverride All 78 78 Order allow,deny 79 allow from all79 Allow from all 80 80 </Directory> 81 }}} 82 83 === MySQL Configuration === 84 * Create a database for your iPeer instance. 85 {{{ 86 #!sql 87 CREATE DATABASE ipeer; 88 }}} 89 * Create a user and grant permissions 90 {{{ 91 #!sql 92 CREATE USER 'ipeer'@'localhost' IDENTIFIED BY 'PASSWORD'; 93 GRANT ALL PRIVILEGES ON ipeer.* TO 'ipeer'@'localhost'; 94 FLUSH PRIVILEGES; 81 95 }}} 82 96