Déploiement PHP dans le Cloud Oracle



Ci dessous le fichier manifest.json

{
    "runtime": {
        "majorVersion": "7.1"
    },
    "notes": "phpinfos !!!"
}

Le fichier index.php pour phpinfo:

<?php
  phpinfo();
?>

Un extrait du fichier de configuration WordPress wp-config.php:

// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', getenv('MYSQLCS_MYSQL_DB'));

/** MySQL database username */
define('DB_USER', getenv('MYSQLCS_USER_NAME'));

/** MySQL database password */
define('DB_PASSWORD', getenv('MYSQLCS_USER_PASSWORD'));

/** MySQL hostname */
define('DB_HOST', getenv('MYSQLCS_MYSQL_HOST'));

/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');

/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');