| 1 |
/**
|
| 2 |
* This configuration file manages the settings for the provision back end of the Aegir hosting system.
|
| 3 |
*
|
| 4 |
* If you are not using the hosting front end, you should copy this file to the root of your
|
| 5 |
* Drupal installation and change the settings accordingly.
|
| 6 |
*
|
| 7 |
* For the most parts the defaults should be sensible and just work.
|
| 8 |
*
|
| 9 |
*/
|
| 10 |
/**
|
| 11 |
* Directory to store site backups.
|
| 12 |
*
|
| 13 |
* If you have multiple provision managed platforms on this system, it is highly
|
| 14 |
* recommended to use the same path for each platform you have.
|
| 15 |
*/
|
| 16 |
# $options['backup_path'] = '/path/to/backups';
|
| 17 |
|
| 18 |
/**
|
| 19 |
* Directory to store configuration files
|
| 20 |
*
|
| 21 |
* All system related configuration files will be stored here.
|
| 22 |
*
|
| 23 |
* If you have multiple provision managed platforms on this server, it is highly
|
| 24 |
* recommended to use the same path for each platform you have.
|
| 25 |
*/
|
| 26 |
# $options['config_path'] = '/path/to/configs';
|
| 27 |
|
| 28 |
/**
|
| 29 |
* The login name for the shell user who will be running the provision scripts
|
| 30 |
*
|
| 31 |
* This needs to be a user account that is not root or the web server user.
|
| 32 |
*/
|
| 33 |
# $options['script_user'] = 'aegir';
|
| 34 |
|
| 35 |
/**
|
| 36 |
* The group that the web server is running as
|
| 37 |
*/
|
| 38 |
# $options['web_group'] = 'apache';
|
| 39 |
|
| 40 |
/**
|
| 41 |
* Database credentials for a database account capable of creating databases and users
|
| 42 |
*/
|
| 43 |
# $options['master_db'] = 'mysql://aegir:password@localhost/mysql';
|
| 44 |
|
| 45 |
/**
|
| 46 |
* Command to restart apache when an action has been completed
|
| 47 |
*/
|
| 48 |
# $options['restart_cmd'] = 'sudo /usr/sbin/apachectl restart';
|
| 49 |
|
| 50 |
/**
|
| 51 |
* The address of the Hostmaster installation
|
| 52 |
* This url will be used to redirect sites that haven't been found or have been disabled.
|
| 53 |
*/
|
| 54 |
# $options['master_url'] = 'http://aegir.company.com';
|