]> _ Git - nec-initiative-wordpress.git/commitdiff
Initial import
authorStephen Cameron <stephen@cubedesigners.com>
Tue, 29 Jun 2021 14:11:41 +0000 (16:11 +0200)
committerStephen Cameron <stephen@cubedesigners.com>
Tue, 29 Jun 2021 14:11:41 +0000 (16:11 +0200)
.gitignore [new file with mode: 0644]
.htaccess [new file with mode: 0644]
wp-config.php [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..567e5c6
--- /dev/null
@@ -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 (file)
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.
+<IfModule mod_rewrite.c>
+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]
+</IfModule>
+
+# END WordPress
+
+# Wordfence WAF
+<Files ".user.ini">
+<IfModule mod_authz_core.c>
+       Require all denied
+</IfModule>
+<IfModule !mod_authz_core.c>
+       Order deny,allow
+       Deny from all
+</IfModule>
+</Files>
+
+# END Wordfence WAF
+
diff --git a/wp-config.php b/wp-config.php
new file mode 100644 (file)
index 0000000..9d3b4cf
--- /dev/null
@@ -0,0 +1,89 @@
+<?php
+/**
+ * The base configuration for WordPress
+ *
+ * The wp-config.php creation script uses this file during the
+ * installation. You don't have to use the web site, you can
+ * copy this file to "wp-config.php" and fill in the values.
+ *
+ * This file contains the following configurations:
+ *
+ * * MySQL settings
+ * * Secret keys
+ * * Database table prefix
+ * * ABSPATH
+ *
+ * @link https://codex.wordpress.org/Editing_wp-config.php
+ *
+ * @package WordPress
+ */
+
+// ** MySQL settings - You can get this info from your web host ** //
+/** The name of the database for WordPress */
+define('DB_NAME', 'necinitiysnec');
+
+/** MySQL database username */
+define('DB_USER', 'necinitiysnec');
+
+/** MySQL database password */
+define('DB_PASSWORD', 'HARper123');
+
+/** MySQL hostname */
+define('DB_HOST', 'necinitiysnec.mysql.db');
+
+/** Database Charset to use in creating database tables. */
+define('DB_CHARSET', 'utf8mb4');
+
+/** The Database Collate type. Don't change this if in doubt. */
+define('DB_COLLATE', '');
+
+/**#@+
+ * Authentication Unique Keys and Salts.
+ *
+ * Change these to different unique phrases!
+ * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
+ * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
+ *
+ * @since 2.6.0
+ */
+define('AUTH_KEY',         'hgxC->&{TuG#(2]C; lZ-A$/Lzx!uE#>&T&Z((jzu^lo#o51lmH,+ArpC}{)<p<&');
+define('SECURE_AUTH_KEY',  '[W;d[RBx;hd{pIeO/@JL41)l&UZOqy9VW9;RyrU]4c+z0TZ* b}pRZ4hXB_LWtuo');
+define('LOGGED_IN_KEY',    'HvbU#hLiW[.huu6W&!~7!!U1U``Z|H*y&YeD%(}n&g1)gi0$~2n-S]=@C%8Y;O+W');
+define('NONCE_KEY',        'uK*D>@Y2h qkw|a%x#=%r2##;dhci`</.3$JA+UCKsex-REFwC8bhrec6wl;!p{w');
+define('AUTH_SALT',        'UwxF0SxhX%XI/j!wZ6exSnm^5WQF2AP)/5BQr%4cc<IP%<j mTX_^G0Fe}J0:}lY');
+define('SECURE_AUTH_SALT', 'u}p10P](HV&2Q%DbK%ddP(7xe3Ra`P ca;=B,gQhe8^1rP^c*69%a~7$OUY7Rh?.');
+define('LOGGED_IN_SALT',   'wXDH~LgevF^E4!vNV(w }/-?t#_K9!V$hKdZ>Z6So#TcN=%C@8<c]5vJ&P:{Sic[');
+define('NONCE_SALT',       'V8#<1z%ha[BoddCKXsQ4vZ^vRCqIGU]~h(C=JMQ4(isV:Plg1,>c~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');