summaryrefslogtreecommitdiff
path: root/tools/config.php
blob: a792b27d784ba8d2e7d96da6227ad5d804176e5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

$_scheme = "http://";

if ( isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] != "")
	$_scheme = "https://";

if ( ! defined("__domain_") )
	# define("__domain_", $_scheme."tools.iamfabulous.de");
	define("__domain_", $_scheme."tools.local");

if ( ! defined("REDIS_CONNECT") )
	define("REDIS_CONNECT", "/var/run/redis/redis.sock");