Top Level Namespace

Includes:
Perus::Server

Defined Under Namespace

Modules: Perus

Constant Summary collapse

DEFAULT_PINGER_OPTIONS =
{
    '__anonymous__' => {
        'system_id' => 1,
        'server' => 'http://127.0.0.1:3000/'
    },

    # restricted values
    'Value' => {
        'path' => []
    },

    'Screenshot' => {
        'path' => []
    },

    'Process' => {
        'process_path' => []
    },

    'Upload' => {
        'path' => []
    },

    'Replace' => {
        'path' => []
    },

    'RemovePath' => {
        'path' => []
    },

    'KillProcess' => {
        'process_name' => []
    }
}
DEFAULT_SERVER_OPTIONS =
{
    '__anonymous__' => {
        'uploads_dir' => './uploads',
        'uploads_url' => 'http://localhost:3000/uploads/',
        'db_path' => './perus.db',
        'listen' => '0.0.0.0',
        'port' => 3000,
        'site_name' => 'Perus',
        'url_prefix' => '/',
        'keep_hours' => 24
    }
}

Constants included from Perus::Server

Perus::Server::DEFAULT_SERVER_OPTIONS_PATH