]> git.stg.codes - stg.git/commitdiff
Slightly changed patch from SpiderX <spiderx@spiderx.dp.ua> - sgauth.conf
authorMaxim Mamontov <faust.madf@gmail.com>
Mon, 14 Jan 2013 19:28:21 +0000 (21:28 +0200)
committerMaxim Mamontov <faust.madf@gmail.com>
Mon, 14 Jan 2013 19:28:21 +0000 (21:28 +0200)
projects/sgauth/sgauth.conf

index 0368ec02e585984f9c9ba21138f0392587c479e7..b1fe435257f26309d581b8eda40360edc81518c8 100644 (file)
@@ -1,37 +1,72 @@
-#Stargazer server ip
-ServerName=192.168.1.2
+################################################################################
+#                           Sgauth Configuration file                          #
+################################################################################
 
-#Stargazer server port
-#Default value 5555
-ServerPort=5555
+# Stargazer server
+# Parameter: required
+# Values: IP address or DNS name
+# Default:
+ServerName = 192.168.1.2
 
-#User's login
-Login=test
+# Port on which Stargazer interacts with sgauth
+# Parameter: optional
+# Value: 1 ... 65535
+# Default: 5555
+ServerPort = 5555
 
-#
-#
-LocalPort=12345
+# User's login in Stargazer
+# Parameter: required
+# Value: any
+# Default:
+Login = test
 
-#User's password
-Password=1234567
+# Port on which sgauth interacts with Stargazer
+# Parameter: optional
+# Value: 1 ... 65535
+# Default: 0
+LocalPort = 12345
 
-#
-#Default value yes
-#Reconnect=no
+# User's password in Stargazer
+# Parameter: required
+# Value: any
+# Default:
+Password = 123456
 
-#
-#Default value yes
-#Daemon=yes
+# Defines whether sgauth should try to reestablish connection to Stargazer
+# if it was lost
+# Parameter: optional
+# Value: yes, no
+# Default: yes
+Reconnect = yes
 
-#Refresh web page period
-#Default value 10
-#RefreshPeriod=10
+# Defines whether sgauth should run as daemon
+# Parameter: optional
+# Value: yes, no
+# Default: yes
+Daemon = yes
 
-#
-#Default value 127.0.0.1
-ListenWebIP=127.0.0.1
+# Web-page refresh period in built-in webserver
+# Parameter: optional
+# Value: any numeric (minutes)
+# Default: 10
+RefreshPeriod = 10
 
-#Default value no
-DisableWeb=no
+# Defines whether sgauth should use built-in webserver
+# Parameter: optional
+# Value: yes, no
+# Default: no
+DisableWeb = no
 
-#ShowPid=no
+# Defines address on which sgauth's built-in webserver will listen
+# Parameter: optional
+# Value: IP address or DNS name
+# Default: 127.0.0.1
+ListenWebIP = 127.0.0.1
+
+# Defines whether sgauth should show its process ID
+# Parameter: optional
+# Value: yes, no
+# Default: no
+ShowPid = no
+
+################################################################################