2023-06-12 10:00:01 +00:00
|
|
|
<?php
|
|
|
|
return [
|
2023-09-28 09:01:00 +00:00
|
|
|
'docs' => [
|
|
|
|
'base_url' => 'https://coolify.io/docs',
|
|
|
|
'contact' => 'https://coolify.io/docs/contact',
|
|
|
|
],
|
|
|
|
'ssh' => [
|
2024-04-12 21:50:23 +00:00
|
|
|
'mux_persist_time' => env('SSH_MUX_PERSIST_TIME', "1m"),
|
2023-09-13 11:00:16 +00:00
|
|
|
'connection_timeout' => 10,
|
|
|
|
'server_interval' => 20,
|
|
|
|
'command_timeout' => 7200,
|
|
|
|
],
|
2023-08-15 12:11:38 +00:00
|
|
|
'waitlist' => [
|
2023-08-30 16:23:55 +00:00
|
|
|
'expiration' => 10,
|
2023-08-15 12:11:38 +00:00
|
|
|
],
|
2023-06-12 10:00:01 +00:00
|
|
|
'invitation' => [
|
|
|
|
'link' => [
|
|
|
|
'base_url' => '/invitations/',
|
|
|
|
'expiration' => 10,
|
|
|
|
],
|
|
|
|
],
|
2023-09-25 13:48:43 +00:00
|
|
|
'services' => [
|
2024-03-25 12:28:39 +00:00
|
|
|
// Temporary disabled until cache is implemented
|
|
|
|
// 'official' => 'https://cdn.coollabs.io/coolify/service-templates.json',
|
|
|
|
'official' => 'https://raw.githubusercontent.com/coollabsio/coolify/main/templates/service-templates.json',
|
2023-09-25 13:48:43 +00:00
|
|
|
],
|
2023-08-14 13:22:29 +00:00
|
|
|
'limits' => [
|
2023-11-29 15:34:31 +00:00
|
|
|
'trial_period' => 0,
|
2023-08-14 13:22:29 +00:00
|
|
|
'server' => [
|
2023-08-31 13:00:59 +00:00
|
|
|
'zero' => 0,
|
|
|
|
'self-hosted' => 999999999999,
|
2023-11-23 09:51:57 +00:00
|
|
|
'basic' => env('LIMIT_SERVER_BASIC', 2),
|
|
|
|
'pro' => env('LIMIT_SERVER_PRO', 10),
|
|
|
|
'ultimate' => env('LIMIT_SERVER_ULTIMATE', 25),
|
2024-05-02 10:27:04 +00:00
|
|
|
'dynamic' => env('LIMIT_SERVER_DYNAMIC', 2),
|
2023-08-15 12:11:38 +00:00
|
|
|
],
|
2023-08-31 13:00:59 +00:00
|
|
|
'email' => [
|
2023-10-05 12:46:39 +00:00
|
|
|
'zero' => true,
|
2023-08-31 13:00:59 +00:00
|
|
|
'self-hosted' => true,
|
2023-10-05 12:46:39 +00:00
|
|
|
'basic' => true,
|
2023-08-30 16:23:55 +00:00
|
|
|
'pro' => true,
|
|
|
|
'ultimate' => true,
|
2024-05-02 10:27:04 +00:00
|
|
|
'dynamic' => true,
|
2023-08-30 16:23:55 +00:00
|
|
|
],
|
2023-08-15 12:11:38 +00:00
|
|
|
],
|
2023-06-12 10:00:01 +00:00
|
|
|
];
|