forked from HPR/hpr_hub
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			725 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			725 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/*
 | 
						|
This is where the credentials are kept - only sanitized version to be loaded to git.
 | 
						|
*/
 | 
						|
$databaseHostName = "localhost";
 | 
						|
$databaseName = "hpr_hpr";
 | 
						|
$databaseUsername = "hpr_hpr";
 | 
						|
$databasePassword = 'THE_DATABASE_PASSWORD_HERE';
 | 
						|
 | 
						|
$mailerHost = "smtp.example.com";
 | 
						|
$mailerUsername = 'robot@example.com';
 | 
						|
$mailerPassword = 'THE_SMTP_MAIL_PASSWORD_HERE';
 | 
						|
 | 
						|
$hubBaseurl = "https://hub.hackerpublicradio.org/";
 | 
						|
$baseurl = "https://hackerpublicradio.org/";
 | 
						|
 | 
						|
$comment_directory = "/path/to/comments";
 | 
						|
$naughtyfile = '/path/to/naughty.txt';
 | 
						|
$naughty_stings_file = '/path/to/strings.txt';
 | 
						|
$justification_file = '/path/to/justification.txt';
 | 
						|
# Read more: http://vidiame.com/php/how-to-block-multiple-ip-addresses-using-php
 | 
						|
 | 
						|
?>
 |