cluster

Infrastructure files for Nordgedanken and Midnightthoughts.
git clone git://archive.git.mtrnord.blog/MTRNord/cluster.git
Log | Files | Refs | README

wp-config.php (3614B)


      1 <?php
      2 define( 'WPCACHEHOME', '/var/www/html/wordpress/wp-content/plugins/wp-super-cache/' );
      3 define('WP_CACHE', true);
      4 define( 'DB_NAME', '${DB_NAME}' );
      5 define( 'DB_USER', '${DB_USER}' );
      6 define( 'DB_PASSWORD', '${DB_PASSWORD}' );
      7 define( 'DB_HOST', '${DB_HOST}' );
      8 define( 'DB_CHARSET', 'utf8' );
      9 define( 'DB_COLLATE', '' );
     10 define('WP_MEMORY_LIMIT', '256M');
     11 define('ACTIVITYPUB_AUTHORIZED_FETCH', true);
     12 define( 'ACTIVITYPUB_SEND_VARY_HEADER', true );
     13 
     14 /**#@+
     15  * Authentication unique keys and salts.
     16  *
     17  * Change these to different unique phrases! You can generate these using
     18  * the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}.
     19  *
     20  * You can change these at any point in time to invalidate all existing cookies.
     21  * This will force all users to have to log in again.
     22  *
     23  * @since 2.6.0
     24  */
     25 define( 'AUTH_KEY',         '${AUTH_KEY}' );
     26 define( 'SECURE_AUTH_KEY',  '${SECURE_AUTH_KEY}' );
     27 define( 'LOGGED_IN_KEY',    '${LOGGED_IN_KEY}' );
     28 define( 'NONCE_KEY',        '${NONCE_KEY}' );
     29 define( 'AUTH_SALT',        '${AUTH_SALT}' );
     30 define( 'SECURE_AUTH_SALT', '${SECURE_AUTH_SALT}' );
     31 define( 'LOGGED_IN_SALT',   '${LOGGED_IN_SALT}' );
     32 define( 'NONCE_SALT',       '${NONCE_SALT}' );
     33 
     34 /**#@-*/
     35 
     36 /**
     37  * WordPress database table prefix.
     38  *
     39  * You can have multiple installations in one database if you give each
     40  * a unique prefix. Only numbers, letters, and underscores please!
     41  *
     42  * At the installation time, database tables are created with the specified prefix.
     43  * Changing this value after WordPress is installed will make your site think
     44  * it has not been installed.
     45  *
     46  * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix
     47  */
     48 $table_prefix = 'wp_';
     49 
     50 /**
     51  * For developers: WordPress debugging mode.
     52  *
     53  * Change this to true to enable the display of notices during development.
     54  * It is strongly recommended that plugin and theme developers use WP_DEBUG
     55  * in their development environments.
     56  *
     57  * For information on other constants that can be used for debugging,
     58  * visit the documentation.
     59  *
     60  * @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
     61  */
     62 define( 'WP_DEBUG', false );
     63 
     64 /* Add any custom values between this line and the "stop editing" line. */
     65 
     66 
     67 if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') {
     68     $_SERVER['HTTPS'] = 'on';
     69 }
     70 define('WP_HOME', 'https://mtrnord.blog');
     71 define('WP_SITEURL', 'https://mtrnord.blog');
     72 // define( 'DISABLE_WP_CRON', true );
     73 define( 'SMTP_USER',   'support@midnightthoughts.space' );    // Benutzername für die SMTP-Authentifizierung
     74 // Get password from environment variable
     75 define( 'SMTP_PASS',    getenv('SMTP_PASS') );    // Passwort für die SMTP-Authentifizierung
     76 define( 'SMTP_HOST',   'mail.midnightthoughts.space' );    // Der Hostname des Mailservers
     77 define( 'SMTP_FROM',   'support@midnightthoughts.space' ); // SMTP Von E-Mail-Adresse
     78 define( 'SMTP_NAME',   'MTRNords Blog' );    // SMTP Von Name
     79 define( 'SMTP_PORT',   '465' );                  // SMTP-Portnummer - wahrscheinlich 25, 465 oder 587
     80 define( 'SMTP_SECURE', 'ssl' );                 // Zu verwendendes Verschlüsselungssystem - ssl oder tls
     81 define( 'SMTP_AUTH',    true );                 // SMTP-Authentifizierung verwenden (true|false)
     82 define( 'SMTP_DEBUG',   0 );                    // nur für Debugging-Zwecke auf 1 oder 2 setzen
     83 
     84 /* That's all, stop editing! Happy publishing. */
     85     
     86 if ( ! defined( 'ABSPATH' ) ) {
     87     define( 'ABSPATH', __DIR__ . '/' );
     88 }
     89     
     90 require_once ABSPATH . 'wp-settings.php';