<?php
# $Paefchen: FreeBSD/tinderbox2/webui/inc_tinderbox.php.dist,v 1.4 2007/10/20 18:22:03 as Exp $
# Configurable options
$tinderbox_name = 'Example Tinderbox';
$tinderbox_title = 'Example Tinderbox';
$wwwrootdir = dirname( __FILE__ );
$rootdir = realpath( $wwwrootdir . '/../..' );
$protocol = isset( $_SERVER['HTTPS'] ) ? 'https' : 'http';
$host = $_SERVER['SERVER_NAME'];
$wwwrooturi = $protocol . '://' . $host;
if ($_SERVER['SERVER_PORT'] != 80)
$wwwrooturi .= ':' . $_SERVER['SERVER_PORT'];
$wwwrooturi .= dirname( $_SERVER['SCRIPT_NAME'] );
$template_dir = 'default';
# These should probably be left alone
$pkguri = $wwwrooturi.'/packages';
$pkgdir = $rootdir.'/packages';
$loguri = $wwwrooturi.'/logs';
$logdir = $rootdir.'/logs';
$errorloguri = $wwwrooturi.'/errors';
$errorlogdir = $rootdir.'/errors';
$templatesdir = $wwwrootdir.'/templates/'.$template_dir;
$templatesuri = $wwwrooturi.'/templates/'.$template_dir;
#$with_timer = 1;
?>