lasthourcloud/config/constants.php

38 lines
859 B
PHP
Raw Normal View History

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