summaryrefslogtreecommitdiff
path: root/public/wp-config.php
diff options
context:
space:
mode:
Diffstat (limited to 'public/wp-config.php')
-rw-r--r--public/wp-config.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/public/wp-config.php b/public/wp-config.php
new file mode 100644
index 0000000..8503bb3
--- /dev/null
+++ b/public/wp-config.php
@@ -0,0 +1,11 @@
+<?php
+
+if (! defined('ABSPATH')) {
+ define('ABSPATH', __DIR__ . '/wp/');
+}
+
+define('WP_CONTENT_DIR', __DIR__ . '/wp-content');
+
+require_once dirname(__DIR__) . '/vendor/autoload.php';
+require_once dirname(__DIR__) . '/wp-config.php';
+require_once ABSPATH . 'wp-settings.php';