view config/config.php @ 25:057b56c62b13

change the url link of LGDataverse
author Calvin Yeh <cyeh@mpiwg-berlin.mpg.de>
date Thu, 28 Sep 2017 23:56:27 +0200
parents 982f98f0e52e
children
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 = "//localgazetteers-test.mpiwg-berlin.mpg.de/dvn/";

} 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/";

?>