Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mmierzwa
Created December 8, 2019 22:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmierzwa/ff2db276a5138427e4e720efc44fb12f to your computer and use it in GitHub Desktop.
Save mmierzwa/ff2db276a5138427e4e720efc44fb12f to your computer and use it in GitHub Desktop.
<?php
$CONFIG = array (
'instanceid' => '...',
'passwordsalt' => '...',
'secret' => '...',
'trusted_domains' =>
array (
0 => 'mydomain.example.com',
),
'datadirectory' => '/data',
'overwrite.cli.url' => 'http://mydomain.example.com',
'dbtype' => 'pgsql',
'version' => '10.3.1.1',
'dbname' => '...',
'dbhost' => 'localhost:5432',
'dbtableprefix' => 'oc_',
'dbuser' => '...',
'dbpassword' => '...',
'logtimezone' => 'UTC',
'apps_paths' =>
array (
0 =>
array (
'path' => '/apps',
'url' => '/apps',
'writable' => false,
),
1 =>
array (
'path' => '/apps-external',
'url' => '/apps-external',
'writable' => true,
),
),
'installed' => true,
'mail_domain' => 'myemaildomain.example.com',
'mail_from_address' => 'noreply',
'mail_smtpmode' => 'smtp',
'mail_smtpsecure' => 'ssl',
'mail_smtphost' => 'smtp.myemaildomain.example.com',
'mail_smtpauthtype' => 'LOGIN',
'mail_smtpauth' => 1,
'mail_smtpname' => 'noreply@myemaildomain.example.com',
'mail_smtppassword' => '...',
'mail_smtpport' => '465',
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment