view config/config.php @ 20:982f98f0e52e

for ssl protocol
author Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
date Thu, 23 Mar 2017 11:13:24 +0100
parents a599ced81534
children 057b56c62b13
line wrap: on
line source

<?php

$at_local = false;

if (!$at_local) {
	// host at localgazetteers-dev server
	$mysql_database = "Gazetteer";
	$mysql_server = "localhost";
	$mysql_user = "root";
	$mysql_password = "admin";
	$server_host = "//localgazetteers-test.mpiwg-berlin.mpg.de/";
	$lgserver_url = $server_host."LGServices/";
	$lgdataverse_url = "//dvn.localgazetteers-test.mpiwg-berlin.mpg.de/";

} else {
	// localhost
	$mysql_database = "Gazetteer";
	$mysql_server = "localhost";
	$mysql_user = "root";
	$mysql_password = "root";
	$server_host = "http://localhost:1080/localgazetteers/";
	$lgserver_url = "http://localgazetteers-test/LGServices/";

}

$systemNAME = "interface";
$system_root_url = $server_host."LGMap/";

?>