-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreds.php
31 lines (25 loc) · 999 Bytes
/
creds.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
// MySQL Credentials
$db_host = 'us-cdbr-iron-east-03.cleardb.net';
$db_user = 'bf1007317ec6b0'; // Enter your MySQL username
$db_pass = 'ae4fecda'; // Enter your MySQL password
$db_name = 'heroku_991e11ce2fccbb1';
$db_table = 'raw_logs';
// User credentials for Browser login
$auth_user = 'admin'; //Sample: 'torque'
$auth_pass = 'admin'; //Sample: 'open'
//If you want to restrict access to upload_data.php,
// either enter your torque ID as shown in the torque app,
// or enter the hashed ID as it can found in the uploaded data.
//The hash is simply MD5(ID).
//Leave empty to allow any torque app to upload data to this server.
$torque_id = ''; //Sample: 123456789012345
$torque_id_hash = ''; //Sample: 58b9b9268acaef64ac6a80b0543357e6
//Just 'settings', could be moved to a config file later.
$source_is_fahrenheit = false;
$use_fahrenheit = false;
$source_is_miles = false;
$use_miles = false;
$hide_empty_variables = true;
$show_session_length = true;
?>