Welcome to mirror list, hosted at ThFree Co, Russian Federation.

codespace.config.php « .devcontainer - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2818a760edbf8ca367d9fbb053c30779922d8c0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

$cloudEnvironmentId = getenv('CLOUDENV_ENVIRONMENT_ID');

$CONFIG = [
    'mail_from_address' => 'no-reply',
    'mail_smtpmode' => 'smtp',
    'mail_sendmailmode' => 'smtp',
    'mail_domain' => 'example.com',
    'mail_smtphost' => 'localhost',
    'mail_smtpport' => '1025',
    'memcache.local' => '\OC\Memcache\APCu',
];

if($cloudEnvironmentId !== true) {
    $CONFIG['overwritehost'] = $cloudEnvironmentId . '-80.apps.codespaces.githubusercontent.com';
    $CONFIG['overwriteprotocol'] = 'https';
}