coolify/config/constants.php

48 lines
1.4 KiB
PHP
Raw Permalink Normal View History

2023-06-12 12:00:01 +02:00
<?php
2024-06-10 22:43:34 +02:00
2023-06-12 12:00:01 +02:00
return [
2023-09-28 11:01:00 +02:00
'docs' => [
'base_url' => 'https://coolify.io/docs',
'contact' => 'https://coolify.io/docs/contact',
],
'ssh' => [
2024-06-10 22:43:34 +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
// '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,
'basic' => env('LIMIT_SERVER_BASIC', 2),
'pro' => env('LIMIT_SERVER_PRO', 10),
'ultimate' => env('LIMIT_SERVER_ULTIMATE', 25),
'dynamic' => env('LIMIT_SERVER_DYNAMIC', 2),
2023-08-15 14:11:38 +02:00
],
2023-08-31 15:00:59 +02:00
'email' => [
'zero' => true,
2023-08-31 15:00:59 +02:00
'self-hosted' => true,
'basic' => true,
2023-08-30 18:23:55 +02:00
'pro' => true,
'ultimate' => true,
'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
];