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