12 lines
365 B
PHP
12 lines
365 B
PHP
<?php
|
|
defined('_VALID') or die('Restricted Access!');
|
|
//----------------------------------------------------------------
|
|
// Define ilo - SSH configuration:
|
|
|
|
$config['ilo_server_ip'] = 'ILO_IP';
|
|
$config['ilo_SSH_user'] = 'ILO_USER'; // User with rwx rights on the web directory
|
|
$config['ilo_SSH_password'] = 'ILO_PASSWORD'; // Password for user
|
|
|
|
?>
|
|
|