forked from magento/magento-cloud-docker
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.php.dist
More file actions
41 lines (39 loc) · 1.07 KB
/
config.php.dist
File metadata and controls
41 lines (39 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
return [
'MAGENTO_CLOUD_RELATIONSHIPS' => base64_encode(json_encode([
'database' => [
[
'host' => 'db',
'path' => 'magento2',
'password' => 'magento2',
'username' => 'magento2',
'port' => '3306'
]
],
'redis' => [
[
'host' => 'redis',
'port' => '6379'
]
]
])),
'MAGENTO_CLOUD_ROUTES' => base64_encode(json_encode([
'http://magento2.docker/' => [
'type' => 'upstream',
'original_url' => 'http://{default}'
],
'https://magento2.docker/' => [
'type' => 'upstream',
'original_url' => 'https://{default}'
]
])),
'MAGENTO_CLOUD_VARIABLES' => base64_encode(json_encode([
'ADMIN_EMAIL' => 'admin@example.com',
'ADMIN_PASSWORD' => '123123q',
'ADMIN_URL' => 'admin'
])),
'MAGENTO_CLOUD_APPLICATION' => base64_encode(json_encode([
'hooks' => [
]
])),
];