===========================================================================
$NetBSD: MESSAGE,v 1.3 2012/02/17 16:40:23 ryoon Exp $

To use ownCloud, you will need to perform the following steps.

1. If you want to use with MySQL server, install databases/mysql51-*
   and enable it, then create database.

2. Install apache httpd server, for example www/apache22 and www/ap-php.

3. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf

	DocumentRoot "${PREFIX}/share/owncloud"
	LoadModule php5_module lib/httpd/mod_php5.so
	AddType application/x-httpd-php .php
	<Directory ${PREFIX}/share/owncloud>
		Options All
		Allow from All
	</Directory>

4. Be sure to have the following lines in ${PREFIX}/etc/php.ini.

	extension=dom.so
	extension=gd.so
	extension=json.so
	extension=mbstring.so
	extension=zip.so
	extension=sqlite.so ;if you select sqlite backend.
	extension=mysql.so ;if you select MySQL backend.

5. Start apache httpd.

6. Access http://localhost/index.php and setup.
===========================================================================
