view config/config.php @ 17:2e6bf16b0be3

Commit from test site
author Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
date Tue, 21 Mar 2017 18:05:52 +0100
parents 0bbf7b85d005
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";
	*/


	// remote server at SBB
	$mysql_database = "gazetteer";
	$mysql_server = "194.94.134.66";
	$mysql_user = "gazetteer";
	$mysql_password = "R-9C7Bmx%2";
	// ---

	$server_host = "https://localgazetteers-test.mpiwg-berlin.mpg.de/";
	$lgserver_url = $server_host."LGServices/";

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

	$server_host = "http://localhost:1080/localgazetteers-dev/";
	$lgserver_url = "http://localhost:8080/LGServices/";

}

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

?>