Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 557 Bytes

Config.md

File metadata and controls

21 lines (18 loc) · 557 Bytes

Configuration

This is the default configuration of Fruithost.

Path: /etc/fruithost/.config.php

<?php
	# Database Connection
	define('DATABASE_HOSTNAME',		'localhost');
	define('DATABASE_PORT',			3306);
	define('DATABASE_USERNAME',		<username>);
	define('DATABASE_PASSWORD',		<password>);
	define('DATABASE_NAME',			<database>);
	define('DATABASE_PREFIX',		'fh_');

	# Paths
	define('HOST_PATH',			'/var/fruithost/users/');
	define('CONFIG_PATH',			'/var/fruithost/config/');	# @since 1.0.4
	define('LOG_PATH',			'/var/fruithost/logs/');
?>