1<?php 2 3// URL of the root of the farm, ended with / 4$farmconf['farmwebroot'] = 'http://<your domain>/<path to farm>'; 5 6// path of the root of the farm, ended with / 7$farmconf['farmfsroot'] = '<path to farm from system root> (ex: /var/www/html/<path to farm>)'; 8 9// Farmer (main DW instance) path (relative to farmfsroot/farmwebroot) 10$farmconf['farmer'] = '<farmer directory>/ (ex: farmer/)'; 11 12// Where animals are stored (relative to farmfsroot/farmwebroot) 13$farmconf['barn'] = '<barn directory>/ (ex: animals/)'; 14 15// 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 16$farmconf['farmrewrite'] = false; 17 18// set userewrite to true if you want to access animal using <root>/<barn>/<animal> instead of <root>/<farmer>/doku.php?animal=<aid>&id=... 19$farmconf['userewrite'] = false; 20 21// set virtual to true if you use a virtualhost based setup 22$farmconf['virtual'] = false; 23 24// the virtualhost that must be identified as the farmer if virtual is in use 25$farmconf['farmerhost'] = ''; 26 27// The name of the default animal template 28$farmconf['animaltemplate'] = 'animaltemplate'; 29 30// set enablesoap to true if you want to allow trusted remote applications to interract with the farm 31$farmconf['enablesoap'] = false; 32 33// Farm max disk usage in bytes, 0 means no limit. 34$farmconf['farmmaxsize'] = 0; 35 36// Animal max disk usage in bytes, 0 means no limit. 37$farmconf['animalmaxsize'] = 0; 38 39// Maximal amount of animals, 0 means no limit. 40$farmconf['farmmaxanimals'] = 0; 41 42?> 43