14 lines
		
	
	
		
			676 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			676 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| 	class Configuration
 | |
| 	{
 | |
| 		public static $mysqlserver = 'mysql.mydomain';    //Host
 | |
| 		public static $mysqluser = 'shoppingList';           //User [It's recommended to not use root]
 | |
| 		public static $mysqlpw = 'somePassword';                 //Password
 | |
| 		public static $mysqldb = 'shoppingList';       //Database                               
 | |
| 		public static $mysqlPort = 3306;
 | |
| 		public static $mysqlSSL = false;
 | |
| 		public static $mysqlSslCertificatePath = "/etc/ssl/certs/yourCert.crt";
 | |
| 		public static $rhasspyMasterUrl = "http://rhasspy-master:12101";	// URL of your Rhasspy master webpage WITHOUT ending slash. It is required if you want to trigger a retraining.
 | |
| 	}
 | |
| ?>
 |