]> git.stg.codes - stg.git/blob - projects/sgauth/sgauth.conf
Slightly changed patch from SpiderX <spiderx@spiderx.dp.ua> - sgauth.conf
[stg.git] / projects / sgauth / sgauth.conf
1 ################################################################################
2 #                           Sgauth Configuration file                          #
3 ################################################################################
4
5 # Stargazer server
6 # Parameter: required
7 # Values: IP address or DNS name
8 # Default:
9 ServerName = 192.168.1.2
10
11 # Port on which Stargazer interacts with sgauth
12 # Parameter: optional
13 # Value: 1 ... 65535
14 # Default: 5555
15 ServerPort = 5555
16
17 # User's login in Stargazer
18 # Parameter: required
19 # Value: any
20 # Default:
21 Login = test
22
23 # Port on which sgauth interacts with Stargazer
24 # Parameter: optional
25 # Value: 1 ... 65535
26 # Default: 0
27 LocalPort = 12345
28
29 # User's password in Stargazer
30 # Parameter: required
31 # Value: any
32 # Default:
33 Password = 123456
34
35 # Defines whether sgauth should try to reestablish connection to Stargazer
36 # if it was lost
37 # Parameter: optional
38 # Value: yes, no
39 # Default: yes
40 Reconnect = yes
41
42 # Defines whether sgauth should run as daemon
43 # Parameter: optional
44 # Value: yes, no
45 # Default: yes
46 Daemon = yes
47
48 # Web-page refresh period in built-in webserver
49 # Parameter: optional
50 # Value: any numeric (minutes)
51 # Default: 10
52 RefreshPeriod = 10
53
54 # Defines whether sgauth should use built-in webserver
55 # Parameter: optional
56 # Value: yes, no
57 # Default: no
58 DisableWeb = no
59
60 # Defines address on which sgauth's built-in webserver will listen
61 # Parameter: optional
62 # Value: IP address or DNS name
63 # Default: 127.0.0.1
64 ListenWebIP = 127.0.0.1
65
66 # Defines whether sgauth should show its process ID
67 # Parameter: optional
68 # Value: yes, no
69 # Default: no
70 ShowPid = no
71
72 ################################################################################