13 lines
		
	
	
		
			468 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			468 B
		
	
	
	
		
			PHP
		
	
	
| <?php 
 | |
| $RUNTIME['PDO']	= new PDO('mysql:host=...;dbname=...', '...', '...'); //The Robust DB
 | |
| 
 | |
| $RUNTIME['SMTP']['SERVER']  =   "localhost";
 | |
| $RUNTIME['SMTP']['PORT']  =   25;
 | |
| $RUNTIME['SMTP']['ADRESS']  =   "noreplay@localhost";
 | |
| $RUNTIME['SMTP']['USER']  =   "noreplay@localhost";
 | |
| $RUNTIME['SMTP']['PASS']  =   "...";
 | |
| 
 | |
| $RUNTIME['GRID']['NAME'] = "OpenSim";
 | |
| $RUNTIME['GRID']['MAIN_NEWS'] = "Yet an other OpenSim Grid.";
 | |
| $RUNTIME['GRID']['HOMEURL'] = "http://...:8002";
 | |
| ?>
 |