<?php

// URL of the root of the farm, ended with /
$farmconf['farmwebroot'] = 'http://<your domain>/<path to farm>';

// path of the root of the farm, ended with /
$farmconf['farmfsroot'] = '<path to farm from system root> (ex: /var/www/html/<path to farm>)';

// Farmer (main DW instance) path (relative to farmfsroot/farmwebroot)
$farmconf['farmer'] = '<farmer directory>/ (ex: farmer/)';

// Where animals are stored (relative to farmfsroot/farmwebroot)
$farmconf['barn'] = '<barn directory>/ (ex: animals/)';

// set barnrewrite to true if you want to access animal using <root>/<animal> instead of <root>/<barn>/<animal>, if true then $farmconf['userewrite'] must be true as well
$farmconf['farmrewrite'] = false;

// set userewrite to true if you want to access animal using <root>/<barn>/<animal> instead of <root>/<farmer>/doku.php?animal=<aid>&id=...
$farmconf['userewrite'] = false;

// set virtual to true if you use a virtualhost based setup
$farmconf['virtual'] = false;

// the virtualhost that must be identified as the farmer if virtual is in use
$farmconf['farmerhost'] = '';

// The name of the default animal template
$farmconf['animaltemplate'] = 'animaltemplate';

// set enablesoap to true if you want to allow trusted remote applications to interract with the farm
$farmconf['enablesoap'] = false;

// Farm max disk usage in bytes, 0 means no limit.
$farmconf['farmmaxsize'] = 0;

// Animal max disk usage in bytes, 0 means no limit.
$farmconf['animalmaxsize'] = 0;

// Maximal amount of animals, 0 means no limit.
$farmconf['farmmaxanimals'] = 0;

?>
