-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.h.default
61 lines (52 loc) · 1.84 KB
/
local.h.default
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
51
52
53
54
55
56
57
58
59
60
/*
FILE
local.h.default
PURPOSE
Localization constants, configuration settings and release info.
LEGAL
Copyright 2001-2017 Gary Wallis for Unixservice, LLC.
*/
#define LOCALCOPYRIGHT "© 2000-2017 Unixservice, LLC. All Rights Reserved."
//mysqld should be carefully firewalled or available by socket only!
//empty strings for DBIP's means use local socket for mysql_connect
#define DBIP0 ""
#define DBIP1 ""
#define DBNAME "unxsvz"
#define DBLOGIN "unxsvz"
#define DBPASSWD "wsxedc"
#define DBPORT 0
#define DBSOCKET NULL
//Example for host running two mysqld
//See makefile and mysqlrad.h CustomExample sections
//#define DBPORT 4306
//#define DBSOCKET "/var/lib/mysql/mysql4.sock"
//Master tClient and related tAuthorize can be centralized
// to be used by all mysqlISP2 related subsystems.
#define TCLIENT "tClient"
//#define TCLIENT "mysqlISP2.tClient"
#define TAUTHORIZE "tAuthorize"
//#define TAUTHORIZE "mysqlISP2.tAuthorize"
//unxsvz can report to us once a week some useful for
//debugging and development statistics.
//This is very helpful to us and in the end we hope for yourself.
//For improving and developing this software
//#define DEBUG_REPORT_STATS_OFF
//Setup your own CA and sign a cert and start up your Apache/mod_ssl server
//for security.
//Make sure mySQL ports are firewalled correctly if used on other servers.
//VPN them?
#define SSLONLY
//You should customize these for your own ISP
#define EXTISPNAME "unixservice"
#define EXTISPURL "unixservice.com"
#define HEADER_TITLE "unxsVZ"
//End-users: Do not change these!
//Also edit main.c header RAD status line if you change the following
#define RELEASE "GitHub"
#define REV ""
//For interfaces
#define cMAILTO "[email protected]"
#define cBCC ""
#define cFROM "[email protected]"
#define cSUBJECT "OneLogin system message"
#define cUNXSVZORGLOGFILE "/var/log/unxsvzOrg.log"