-
Notifications
You must be signed in to change notification settings - Fork 97
/
wp-config.env.php
39 lines (37 loc) · 1.05 KB
/
wp-config.env.php
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
<?php
/**
* Setup environments
*
* @package Studio 24 WordPress Multi-Environment Config
*/
/**
* Define array of environment URLs
*
* Array of:
* environment names =>
* domain => The domain name
* This can also be an array of multiple domains
* You can also use a wildcard * to indicate all sub-domains at a domain, which is useful when using
* WordPress Multisite. If you use wildcards, set the domain should to a single string, not an array
* path => If WordPress is installed to a sub-folder set it here
* ssl => Whether SSL should be used on this domain
*
* If you don't use any environments, remove them
*/
$env = [
'production' => [
'domain' => 'domain.com',
'path' => '',
'ssl' => false,
],
'staging' => [
'domain' => 'staging.domain.com',
'path' => '',
'ssl' => false,
],
'development' => [
'domain' => 'domain.local',
'path' => '',
'ssl' => false,
],
];