projects
/
weathermon.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge commit '2545d27aacfe57c8f26fccfd45e382fbf5c111ac'
[weathermon.git]
/
web
/
config_local.php
1
<?php
2
3
$mysql_host = 'rvb.name';
4
$mysql_schema = 'meteo';
5
$mysql_user = 'meteo';
6
$mysql_pwd = 'somestrongpasswd';
7
$mysql_port = 3306;
8
9
setlocale(LC_ALL,'ru_RU.UTF8');
10
11
$valid_ip_start = ip2long('192.168.1.0');
12
$valid_ip_end = ip2long('192.168.1.255');
13
14
?>