coolify/config/constants.php

38 lines
859 B
PHP
Raw Normal View History

2023-06-12 12:00:01 +02:00
<?php
return [
2023-09-13 13:00:16 +02:00
'ssh' =>[
'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' => [
'offical' => 'https://cdn.coollabs.io/coolify/service-templates.json',
],
2023-08-14 15:22:29 +02:00
'limits' => [
2023-09-19 09:03:27 +02:00
'trial_period'=> 7,
2023-08-14 15:22:29 +02:00
'server' => [
2023-08-31 15:00:59 +02:00
'zero' => 0,
'self-hosted' => 999999999999,
2023-08-14 15:22:29 +02:00
'basic' => 1,
2023-08-30 16:01:38 +02:00
'pro' => 10,
'ultimate' => 25,
2023-08-15 14:11:38 +02:00
],
2023-08-31 15:00:59 +02:00
'email' => [
'zero' => false,
'self-hosted' => true,
2023-08-30 18:23:55 +02:00
'basic' => false,
'pro' => true,
'ultimate' => true,
],
2023-08-15 14:11:38 +02:00
],
2023-06-12 12:00:01 +02:00
];