]> git.stg.codes - stg.git/blob - sgauth/sgauth.conf
Port to CMake, get rid of os_int.h.
[stg.git] / 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 # Local host to bind
24 # Parameter: optional
25 # Values: IP address or DNS name
26 # Default: 0.0.0.0
27 LocalName = localhost
28
29 # Port on which sgauth interacts with Stargazer
30 # Parameter: optional
31 # Value: 1 ... 65535
32 # Default: 0
33 LocalPort = 12345
34
35 # User's password in Stargazer
36 # Parameter: required
37 # Value: any
38 # Default:
39 Password = 123456
40
41 # Defines whether sgauth should try to reestablish connection to Stargazer
42 # if it was lost
43 # Parameter: optional
44 # Value: yes, no
45 # Default: yes
46 Reconnect = yes
47
48 # Defines whether sgauth should run as daemon
49 # Parameter: optional
50 # Value: yes, no
51 # Default: yes
52 Daemon = yes
53
54 # Web-page refresh period in built-in webserver
55 # Parameter: optional
56 # Value: any numeric (minutes)
57 # Default: 10
58 RefreshPeriod = 10
59
60 # Defines whether sgauth should use built-in webserver
61 # Parameter: optional
62 # Value: yes, no
63 # Default: no
64 DisableWeb = no
65
66 # Defines address on which sgauth's built-in webserver will listen
67 # Parameter: optional
68 # Value: IP address or DNS name
69 # Default: 127.0.0.1
70 ListenWebIP = 127.0.0.1
71
72 # Defines whether sgauth should show its process ID
73 # Parameter: optional
74 # Value: yes, no
75 # Default: no
76 ShowPid = no
77
78 ################################################################################