forked from salbahra/Sprinklers-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-example.php
50 lines (34 loc) · 947 Bytes
/
config-example.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/*
This file is for education purposes only. Normally, this file is automatically generated by the installer.
Some options are also modifiable within the application
*/
#Set IP of OpenSprinkler
$os_ip = "192.168.1.30";
#Set OpenSprinkler password
$os_pw = "opendoor";
#Is the device an OpenSprinkler or OSPi
$is_ospi = 0;
#Force SSL
$force_ssl = 0;
#Resource location; 1 for local and 0 for public CDN
$local_assets = 0;
#Password File
$pass_file="/var/www/sprinklers/.htpasswd";
#Cache File
$cache_file = "/var/www/sprinklers/.cache";
#Sprinkler Log File
$log_file = "/var/www/sprinklers/SprinklerChanges.txt";
#Localization
$lang = 'en_US';
#Weather Provider
$weather_provider = 'yahoo';
#Wunderground api key
$wapikey = '';
#Enable/Disable Automatic Rain Delay Based on Weather
$auto_delay = 0;
#Rain Delay Default for Adverse Weather
$auto_delay_duration=24;
#Automatically turn off manual mode at midnight
$auto_mm=0
?>