From: Maxim Mamontov Date: Mon, 14 Jan 2013 19:28:21 +0000 (+0200) Subject: Slightly changed patch from SpiderX - sgauth.conf X-Git-Tag: 2.409~380 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/7b854e83b44dcf8641e4e260665376782944bce8 Slightly changed patch from SpiderX - sgauth.conf --- diff --git a/projects/sgauth/sgauth.conf b/projects/sgauth/sgauth.conf index 0368ec02..b1fe4352 100644 --- a/projects/sgauth/sgauth.conf +++ b/projects/sgauth/sgauth.conf @@ -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 + +################################################################################