Statistiques
| Branche: | Révision :

root / src / connect_entry.php @ master

Historique | Voir | Annoter | Télécharger (779 octet)

1 1a2be799 Florent Chuffart
<?php
2 8cb2b9b3 Florent Chuffart
define ('SERVEUR', "localhost");  // hostname for mysql server
3 8cb2b9b3 Florent Chuffart
define ('BASE', "labstocks_db"); // name of the targeted db
4 8cb2b9b3 Florent Chuffart
define ('LABNAME', "Demo");     // Name of the lab, appear in web page header
5 8cb2b9b3 Florent Chuffart
define ('PASSE', "root");      // passwrd for db access
6 8cb2b9b3 Florent Chuffart
define ('NOM', "root");       // username for db access
7 8cb2b9b3 Florent Chuffart
// CONSTANTS, DO NOT CHANGE  //
8 1a2be799 Florent Chuffart
define ('PLASMAPPER_SERVER', "http://" . $_SERVER["HTTP_HOST"] . ":8080/PlasMapper/");
9 d072e29c Florent Chuffart
define ('LABSTOCK_SERVER', "http://" . $_SERVER["HTTP_HOST"] . "/labstocks/");
10 1a2be799 Florent Chuffart
define ('WWWBLAST_SERVER', "http://" . $_SERVER["HTTP_HOST"] . "/blast/");
11 8b54da0a Florent Chuffart
define ('PLASMAPPER_HOME', "/var/lib/tomcat6/webapps/PlasMapper/");
12 1a2be799 Florent Chuffart
define ('BLAST_HOME', "/var/www/blast/db/");
13 1a2be799 Florent Chuffart
define ('FORMATDB_CMD', "formatdb");
14 3fb9b24c Florent Chuffart
define ('SESSION_DURATION', 1800);
15 8cb2b9b3 Florent Chuffart
?>