Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
docker-wordpress
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
docker-wordpress
Commits
5cd54704
Commit
5cd54704
authored
Apr 19, 2017
by
Fabio Montefuscolo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
create a loop to include all contents from wp-config.d
parent
08171ff2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
wp-config.php
wp-config.php
+3
-2
No files found.
wp-config.php
View file @
5cd54704
...
...
@@ -40,8 +40,9 @@
$_SERVER
[
'HTTPS'
]
=
'on'
;
}
if
(
file_exists
(
ABSPATH
.
'wp-config-extra.php'
)
)
{
include
(
ABSPATH
.
'wp-config-extra.php'
);
foreach
(
glob
(
ABSPATH
.
'wp-config.d/*.php'
)
as
$config
)
{
include
(
$config
);
}
require_once
(
ABSPATH
.
'wp-settings.php'
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment