| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/clients/client2/safemyident.de/web/ |
Upload File : |
<?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 website, you can copy this file to "wp-config.php"
* and fill in the values.
*
* This file contains the following configurations:
*
* * Database settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/
*
* @package WordPress
*/
// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'smi_web' );
/** Database username */
define( 'DB_USER', 'smi_safety_user' );
/** Database password */
define( 'DB_PASSWORD', 'HH6%&TW4tMD9N3MN4&KU' );
/** Database hostname */
define( 'DB_HOST', '127.0.0.1' );
/** 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', 'D6p42^pZE(iylNc!*1Z43p9E8*SJCgx^nRPD%IW8Yr]%doY4GJ]-qVNBLO131rHf');
define('SECURE_AUTH_KEY', 'pZTv760rsIF%Bscmelhn0SX2V-[*Z)yP^CVH5CUNfG=OcY4SFh+13d*s2xZn*=z%');
define('LOGGED_IN_KEY', '9N1GviCfkDS%p(jSSD+)gFn=#!=W+v)pwhMtl-sT]XBB{x[7]Lq_elcCEmnV&=oz');
define('NONCE_KEY', '_u&QUk&xI5Ks+#0CzfRt(s*PsHtS%_j%3%CeLeE*m&f284*(ZvD==g#4A3ESNYws');
define('AUTH_SALT', 'pcGH01BWsKA+I=PgATAlxrQ0vlRU@wl__rQM^!6EC=Yh7tF&Z[bb*oHe0TExQ*8]');
define('SECURE_AUTH_SALT', 'j*J)B^c]V^sS6MPG&GJkT=xmFS&5nQN*{63r+dCKM@hBi#O3p33)fmr3TOsE!YrD');
define('LOGGED_IN_SALT', 'AwEJVbFb7+s=!9nY@k_iYh8*fBT+w#NjNG*E)7}VO*(m*p6V!-xMs=4ek-Yyc{A@');
define('NONCE_SALT', '_sUKqwBUmLEp4ob&KwxC96*NX=8BcL{spJc8hZ^c_T@&(}*K)ZjF]-6&j+gEwmHp');
/**#@-*/
/**
* 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!
*
* At the installation time, database tables are created with the specified prefix.
* Changing this value after WordPress is installed will make your site think
* it has not been installed.
*
* @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix
*/
$table_prefix = 'smi_';
/**
* 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 documentation.
*
* @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
*/
define( 'WP_DEBUG', false );
/* Add any custom values between this line and the "stop editing" line. */
/* --- SafeMyIdent Konfiguration & Härtung --- */
/*
* Kanonischer Host. Der Origin-Server (nginx) leitet ALLE Varianten
* (http, non-www) dauerhaft auf https://www.safemyident.de um – daher ist
* dies die einzige ausspielbare Adresse. Ein FESTER Wert (statt Ableitung aus
* dem Request) sorgt für stabile URLs in CLI und Web, konsistente Canonicals,
* hreflang-Alternates und einen sauberen Polylang-Sprach-Cache (mehrsprachig).
*/
if (!defined('WP_HOME')) {
define('WP_HOME', 'https://www.safemyident.de');
define('WP_SITEURL', WP_HOME);
}
define('DISALLOW_FILE_EDIT', true);
define('WP_POST_REVISIONS', 5);
define('EMPTY_TRASH_DAYS', 14);
define('WP_AUTO_UPDATE_CORE', 'minor');
/* Login/Admin ausschließlich über HTTPS. */
if (!defined('FORCE_SSL_ADMIN')) { define('FORCE_SSL_ADMIN', true); }
/* Fehler niemals im Frontend/HTML ausgeben (nur intern loggen, falls aktiviert). */
if (!defined('WP_DEBUG_DISPLAY')) { define('WP_DEBUG_DISPLAY', false); }
@ini_set('display_errors', '0');
/* That's all, stop editing! Happy publishing. */
/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', __DIR__ . '/' );
}
/** Sets up WordPress vars and included files. */
require_once ABSPATH . 'wp-settings.php';