PageRenderTime 49ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/server/conf/server.conf.in

http://openqwaq.googlecode.com/
Autoconf | 217 lines | 55 code | 40 blank | 122 comment | 0 complexity | 3cb90d471d362443ce7efebb75aaf7fa MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, LGPL-2.0, BSD-3-Clause
  1. #############################################################################
  2. # TES configuration file.
  3. #############################################################################
  4. # The specific network interface to use for the server.
  5. # OpenQwaq.ServiceIP: 127.0.0.1
  6. #############################################################################
  7. # Where are the logs stored? Note that for browsing support
  8. # the log directory needs to have a subdirectory xsl with the
  9. # matching xsl files in them. You can link the directory from
  10. # the installation (which should be server/logs/xsl)
  11. OpenQwaq.LogDir: /home/openqwaq/server/logs
  12. # Standard log names; actual name will be logname.yyyy-mm-dd.log
  13. # If you change any of these names you will want to provide
  14. # matching xsl's for browsing support (just link the old ones)
  15. OpenQwaq.ActivityLog: activity
  16. #############################################################################
  17. # ODBC activity database settings: DSN, user name, password, insert
  18. OpenQwaq.ActivityLog.DSN: OpenQwaqActivityLog
  19. OpenQwaq.ActivityLog.User: openqwaq
  20. OpenQwaq.ActivityLog.Password: openqwaq
  21. OpenQwaq.ActivityLog.Insert: INSERT INTO sp_activity_log(logdate, host, user, action, org, extra) VALUES (%date, %host, %user, %action, %organization, %extra)
  22. #############################################################################
  23. # Where should we send bug reports to?
  24. # OpenQwaq.BugMail: bugs@qwaq.com
  25. #############################################################################
  26. # Service provider specific options
  27. OpenQwaq.SP.RealmsPath: /home/openqwaq/realms
  28. OpenQwaq.SP.UsersPath: /home/openqwaq/users
  29. OpenQwaq.SP.TierDirectory: /home/openqwaq/tiers
  30. OpenQwaq.SP.SupportEmail: support@your_domain
  31. # Should newly invited users be activated automatically?
  32. OpenQwaq.SP.AutoActivate: true
  33. # Should new organizations be lazily created?
  34. OpenQwaq.SP.LazyCreateOrgs: true
  35. # Download, min and max version
  36. # OpenQwaq.SP.ClientDownload: http://www.openqwaq.com/latest
  37. OpenQwaq.SP.MinimumClientVersion: OpenQwaq 1.0.01
  38. OpenQwaq.SP.MaximumClientVersion:
  39. # Global org redirect: When set, *all* orgs are redirected
  40. # to the alternative server.
  41. # OpenQwaq.SP.GlobalOrgRedirect: alt.domain.com
  42. # Unknown org redirect: When set, any unknown organization
  43. # is asked to go to the alternative server.
  44. # OpenQwaq.SP.UnknownOrgRedirect: alt.domain.com
  45. #############################################################################
  46. # Forum Pages settings:
  47. #
  48. # The hostname or hostname:port people use for Web access.
  49. # OpenQwaq.SP.Web.ExternalHostName: your-host.domain.com
  50. # The hostname or hostname:port that we will redirect the above to for HTTPS
  51. # Web access, if any. Leave it out if you don't need HTTPS Forum Pages. If it
  52. # is specified, stunnel must be configured to connect HTTPSHostName to
  53. # InternalHostName.
  54. # OpenQwaq.SP.Web.HTTPSHostName: stunnelled-host.domain.com
  55. # Where should bad Forum Page requests be redirected?
  56. # OpenQwaq.SP.Web.invalidRequest: http://www.openqwaq.com/support/fp-info.php
  57. # OpenQwaq.SP.Web.unauthorized: http://www.openqwaq.com/trial/visitor.php
  58. # To help debugging of Forum Pages support
  59. # OpenQwaq.SP.Web.LogLevel: 1
  60. # The hostname or hostname:port that we listen on.
  61. # host part defaults to hostname, which can be set interactively.
  62. # port part defaults to 9994, which is redirected fromm 80.
  63. # OpenQwaq.SP.Web.InternalHostName: localhost:9994
  64. # What icons are to be used? Can be a file system path or a URL.
  65. # Note that when used in conjunction with OpenQwaq.SP.Web.HTTPSHostName, the
  66. # value should be either a file system path or an HTTPS url. Otherwise some
  67. # browsers may give "broken key" warnings.
  68. # OpenQwaq.SP.Web.favicon: http://www.qwaq.com/favicon.ico
  69. # The default display picture for a user when they don't have one set in preferences:
  70. # OpenQwaq.SP.Web.userLogo: /home/openqwaq/server/web/user.png
  71. # The default display picture for an org when there is no realms/orgname/logo.jpg:
  72. # OpenQwaq.SP.Web.orgLogo: /home/openqwaq/server/web/org.jpg
  73. # The default when we need any other picture and don't have one:
  74. # OpenQwaq.SP.Web.logo: /home/openqwaq/server/web/logo-branding_nav-qwaq.gif
  75. # The following Web properties may be removed in future versions:
  76. #OpenQwaq.SP.Web.feedIcon: /home/openqwaq/server/web/RSSfeed-icon-28x28.png
  77. #OpenQwaq.SP.Web.uploadIcon: /home/openqwaq/server/web/arrow-up-grey-trans.gif
  78. #OpenQwaq.SP.Web.downloadIcon: /home/openqwaq/server/web/arrow-down-grey-trans.gif
  79. # Location (relative to bin/forums) of the template showing what to display.
  80. #OpenQwaq.SP.Web.goTemplate: /home/openqwaq/server/web/qrl-go.html
  81. #OpenQwaq.SP.Web.loginFormTemplate: /home/openqwaq/server/web/loginform.html
  82. #OpenQwaq.SP.Web.uploadFormTemplate: /home/openqwaq/server/web/uploadform.html
  83. #OpenQwaq.SP.Web.uploadResponseTemplate: /home/openqwaq/server/web/uploadresponse.html
  84. #############################################################################
  85. # SP data settings
  86. OpenQwaq.SP.ODBC.Active: true
  87. OpenQwaq.SP.ODBC.DSN: OpenQwaqData
  88. OpenQwaq.SP.ODBC.User: openqwaq
  89. OpenQwaq.SP.ODBC.Password: openqwaq
  90. #############################################################################
  91. # ODBC client activity log
  92. OpenQwaq.SP.ClientActivityLog.DSN: OpenQwaqActivityLog
  93. OpenQwaq.SP.ClientActivityLog.User: openqwaq
  94. OpenQwaq.SP.ClientActivityLog.Password: openqwaq
  95. OpenQwaq.SP.ClientActivityLog.ActivitiesQuery: INSERT INTO client_activity_data_log (datetime_created, client_version, realm_name, username, status, activity_data) VALUES (%date, %version, %org, %user, 0, %contents)
  96. OpenQwaq.SP.ClientActivityLog.StatisticsQuery: INSERT INTO client_performance_data_log (datetime_created, client_version, realm_name, username, status, performance_data) VALUES (%date, %version, %org, %user, 0, %contents)
  97. OpenQwaq.SP.ClientActivityLog.SysInfoQuery: INSERT INTO client_system_information_log (datetime_created, client_version, realm_name, username, status, system_information) VALUES (%date, %version, %org, %user, 0, %contents)
  98. #############################################################################
  99. # ODBC survey log
  100. # OpenQwaq.SP.SurveyLog.DSN: OpenQwaqSurveys
  101. # OpenQwaq.SP.SurveyLog.User: odbcuser
  102. # OpenQwaq.SP.SurveyLog.Password: odbcpassword
  103. # OpenQwaq.SP.SurveyLog.SurveyQuery: INSERT INTO client_survey (datetime_created, client_version, realm_name, username, session_id, survey_name, client_comments) VALUES (%date, %version, %org, %user, %session, %survey, %comment)
  104. # OpenQwaq.SP.SurveyLog.AnswerQuery: INSERT INTO client_survey_answer (session_id, survey_question_id, client_question_answer, question_maximum_scale) VALUES (%session, %question, %answer, %scale)
  105. #############################################################################
  106. # Router-specific options
  107. # Allows HTTP(S) connections to the router if set true on a router (or all-in-one) host.
  108. OpenQwaq.Router.HTTPS: true
  109. # When set on a PROXY CLIENT HOST, tells clients to connect to an HTTP(S) router at other than the default port (8333).
  110. # OpenQwaq.Router.HTTPS.ExternalPort: 9997
  111. #############################################################################
  112. # App-server specific options
  113. OpenQwaq.Apps.RealmsPath: /home/openqwaq/realms
  114. OpenQwaq.Apps.MaxApps: 40
  115. OpenQwaq.Apps.HomeDirectoryPath: /home/openqwaq/tmp
  116. OpenQwaq.Apps.TempDirectoryPath: /tmp
  117. # DO NOT CHANGE THESE UNLESS YOU KNOW WHAT YOU ARE DOING
  118. OpenQwaq.Apps.ScriptPath: ../../apps/scripts
  119. OpenQwaq.Apps.UserGuidePath: ../../docs/userguide
  120. #############################################################################
  121. # Video server specific options
  122. OpenQwaq.NetVid.RealmsPath: /home/openqwaq/realms
  123. OpenQwaq.NetVid.CachePath: /home/openqwaq/realms/cache/NetVid-cache
  124. #############################################################################
  125. # RTSP Broadcast specific options
  126. OpenQwaq.RTSP.Port: 1554
  127. #############################################################################
  128. # VNC access options for the server
  129. OpenQwaq.VNC.Active: true
  130. OpenQwaq.VNC.Password: secret
  131. #############################################################################
  132. # SMTP options
  133. OpenQwaq.Smtp.Host: localhost
  134. OpenQwaq.Smtp.Port: 25
  135. #OpenQwaq.Smtp.User: admin
  136. #OpenQwaq.Smtp.Password: secret
  137. #############################################################################
  138. # Delegated authentication
  139. # When present, the auth script is run with arguments -u user -p password
  140. # It needs to return the format described in the fake_auth script. The
  141. # auth args are any additional arguments that should be passed to the script
  142. #
  143. # OpenQwaq.SP.AuthScript: /home/openqwaq/server/bin/utils/fake_auth.py
  144. # OpenQwaq.SP.AuthArgs: -s fake.server.com
  145. #############################################################################
  146. # Active Directory settings
  147. #
  148. OpenQwaq.AD.Enabled: false
  149. OpenQwaq.AD.ServerName:
  150. OpenQwaq.AD.BaseDN:
  151. OpenQwaq.AD.AuthScript: /home/openqwaq/server/bin/utils/kauth.py
  152. #############################################################################
  153. # Coal options
  154. OpenQwaq.Coal.Active: true
  155. OpenQwaq.Coal.CreateOrgScript: /home/openqwaq/server/templates/mkorg.sh
  156. # OpenQwaq.Coal.GetMyOwnUrl: http://<your_TES>/phpapp/signup.php
  157. # OpenQwaq.Coal.BuyNowUrl: http://<your_TES>/buy
  158. # These mail properties file is no longer in use.
  159. # The entry is here for backwards compatibility
  160. OpenQwaq.Coal.MailProperties: /home/openqwaq/server/mail_templates/mail.properties
  161. # BCC address for keeping an audit trail of outgoing invites etc.
  162. # OpenQwaq.Coal.BCCAddress: coal_bcc@qwaq.com
  163. # Welcome Email Templates
  164. OpenQwaq.Coal.Welcome.AdminTemplate: /home/openqwaq/server/mail_templates/welcome-admin.txt
  165. OpenQwaq.Coal.Welcome.UserTemplate: /home/openqwaq/server/mail_templates/welcome-user.txt
  166. # Invitation Email Templates
  167. OpenQwaq.Coal.Invitation.Template: /home/openqwaq/server/mail_templates/invite.txt
  168. OpenQwaq.Coal.Invitation.NotifyTemplate: /home/openqwaq/server/mail_templates/notify.txt
  169. OpenQwaq.Coal.Invitation.BaseURL: http://<your_TES>/trial/invite.php
  170. # Reset Password Email Template
  171. OpenQwaq.Coal.ResetPassword.Template: /home/openqwaq/server/mail_templates/resetPassword.txt
  172. # Account Reminder Templates
  173. OpenQwaq.Coal.AccountReminder.AdminTemplate: /home/openqwaq/server/mail_templates/reminder-admin.txt
  174. OpenQwaq.Coal.AccountReminder.UserTemplate: /home/openqwaq/server/mail_templates/reminder-user.txt
  175. # Seat Notice Templates
  176. OpenQwaq.Coal.SeatLimitNotice.LimitCloseTemplate: /home/openqwaq/server/mail_templates/seat-limit-close.txt
  177. OpenQwaq.Coal.SeatLimitNotice.OverLimitTemplate: /home/openqwaq/server/mail_templates/over-seat-limit.txt