123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # -----------------------------------------------------------------------
- # GEMINIHELLO configuration file
- #
- # TEST ENVIRONMENT
- #
- # The configuration attributes specified in this file should be common
- # across all Test deployments of the application.
- # -----------------------------------------------------------------------
- # Extend the baseline configuration.
- Extends = GeminiHello-Base.conf
- # TODO: Edit these settings according to the particulars of the
- # Test environment.
- DeploymentDescription = Test/${Servlet.MachineName}
- # Database connectivity for Test.
- db.ConnectString = localhost:3306/gemini?jdbcCompliantTruncation=false&cachePrepStmts=true&prepStmtC
- db.LoginName = hello
- db.LoginPass = hello
- # Mail server definition for the Test environment. TODO: Review these
- # settings for suitability in Test.
- MailServerCount = 1
- MailServer1.ServerAddress = mail.techempower.com
- MailServer1.SmtpPort = 25
- MailServer1.PopPort = 110
- MailServer1.Username = mhixson
- MailServer1.Password = password
- MailServer1.ServerRole = Outbound
- # In test, we'll want to have the email exception handler enabled.
- EmailExceptionHandler.Enabled = true
- # In test, refer to all the static assets via URLs with version strings to
- # allow us to perform aggressive caching.
- HTMLDirectory = /static/${StaticsVersion}/html/
- ImageDirectory = /static/${StaticsVersion}/images/
- CSSDirectory = /static/${StaticsVersion}/css/
- JavaScriptDirectory = /static/${StaticsVersion}/js/
|