forked from PF2M/MiiverseWorld
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.php
More file actions
23 lines (19 loc) · 1.31 KB
/
settings.php
File metadata and controls
23 lines (19 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
// Define your settings here. Set them as null or empty to not use their respective features.
// General settings.
const CONTACT_EMAIL = null; // The email you want to be contacted at. Optional.
const HTTPS_PROXY = false; // Set this to true if you're using an HTTPS proxy like Cloudflare for your site's main domain, or false if you're not or don't know what that is. Required.
const TIMEZONE = 'America/New_York'; // The timezone used by the site. Required.
//const BOOT_MEDIA_LINK = 'http://localhost:8080/'; // The link that would be used to redirect you to Boot_Media links. Required.
// Database settings.
const DB_HOST = 'localhost'; // The hostname of your database server. Required.
const DB_USER = 'root'; // The username you'll use to access the database. Required.
const DB_PASS = ''; // The password you'll use to access the database. Optional.
const DB_NAME = 'project_ultima'; // The name of the database. Required.
// Cloudinary settings.
const CLOUDINARY_CLOUDNAME = 'reverb'; // The cloud name of your Cloudinary account. Required.
const CLOUDINARY_UPLOADPRESET = 'reverb-mobile'; // The unsigned upload preset of your Cloudinary account. Required.
// ReCAPTCHA settings.
const RECAPTCHA_PUBLIC = null; // Your ReCAPTCHA public key. Optional.
const RECAPTCHA_SECRET = null; // Your ReCAPTCHA private key. Optional.
?>