From e61d737ad1168b0d323df508b8d6be1ffd88a8e1 Mon Sep 17 00:00:00 2001 From: Stephen Cameron Date: Tue, 29 Jun 2021 16:11:41 +0200 Subject: [PATCH] Initial import --- .gitignore | 21 ++++++++++++ .htaccess | 30 +++++++++++++++++ wp-config.php | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 140 insertions(+) create mode 100644 .gitignore create mode 100644 .htaccess create mode 100644 wp-config.php diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..567e5c6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +.DS_Store +/.idea +/_doc +.uploads-proxy +local-config.php +node_modules +*.log +/wp-content/* +# /wp-content/themes/index.php +# !/wp-content/themes/ +# !/wp-content/mu-plugins/ +# /wp-content/mu-plugins/wp-migrate-db-pro-compatibility.php +/wp-includes +/wp-admin + +/license.txt +/readme.html +/sitemap.xml +/sitemap.xml.gz +/*.php +!/wp-config.php diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..77d4f34 --- /dev/null +++ b/.htaccess @@ -0,0 +1,30 @@ + +# BEGIN WordPress +# The directives (lines) between "BEGIN WordPress" and "END WordPress" are +# dynamically generated, and should only be modified via WordPress filters. +# Any changes to the directives between these markers will be overwritten. + +RewriteEngine On +RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] +RewriteBase / +RewriteRule ^index\.php$ - [L] +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule . /index.php [L] + + +# END WordPress + +# Wordfence WAF + + + Require all denied + + + Order deny,allow + Deny from all + + + +# END Wordfence WAF + diff --git a/wp-config.php b/wp-config.php new file mode 100644 index 0000000..9d3b4cf --- /dev/null +++ b/wp-config.php @@ -0,0 +1,89 @@ +&{TuG#(2]C; lZ-A$/Lzx!uE#>&T&Z((jzu^lo#o51lmH,+ArpC}{)@Y2h qkw|a%x#=%r2##;dhci`Z6So#TcN=%C@8c~sLb_hMfh7Gx'); + +/**#@-*/ + +/** + * WordPress Database Table prefix. + * + * You can have multiple installations in one database if you give each + * a unique prefix. Only numbers, letters, and underscores please! + */ +$table_prefix = 'wp_'; + +/** + * For developers: WordPress debugging mode. + * + * Change this to true to enable the display of notices during development. + * It is strongly recommended that plugin and theme developers use WP_DEBUG + * in their development environments. + * + * For information on other constants that can be used for debugging, + * visit the Codex. + * + * @link https://codex.wordpress.org/Debugging_in_WordPress + */ +define('WP_DEBUG', false); + +/* That's all, stop editing! Happy blogging. */ + +/** Absolute path to the WordPress directory. */ +if ( !defined('ABSPATH') ) + define('ABSPATH', dirname(__FILE__) . '/'); + +/** Sets up WordPress vars and included files. */ +require_once(ABSPATH . 'wp-settings.php'); -- 2.39.5