123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # -----------------------------------------------------------------------
- # GEMINIHELLO configuration file
- #
- # PRODUCTION ENVIRONMENT
- #
- # The configuration attributes specified in this file should be common
- # across all Production deployments of the application.
- # -----------------------------------------------------------------------
- # Extend the baseline configuration.
- Extends = GeminiHello-Base.conf
- # TODO: Edit these settings according to the particulars of the
- # Production environment.
- DeploymentDescription = Production/${Servlet.MachineName}
- # Database connectivity for Production.
- db.ConnectString = localhost:3306/gemini?jdbcCompliantTruncation=false&cachePrepStmts=true&prepStmtC
- db.LoginName = hello
- db.LoginPass = hello
- # Mail server definition for the production environment. TODO: Most
- # likely you shouldn't be using the TechEmpower mail server in
- # Production, so change this.
- MailServerCount = 1
- MailServer1.ServerAddress = mail.techempower.com
- MailServer1.SmtpPort = 25
- MailServer1.PopPort = 110
- MailServer1.Username = mhixson
- MailServer1.Password = password
- MailServer1.ServerRole = Outbound
- # In production, we'll want to have the email exception handler enabled.
- EmailExceptionHandler.Enabled = true
- # In production, 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/
|