12345678910111213141516171819202122232425262728 |
- # -----------------------------------------------------------------------
- # 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
- DeploymentDescription = Production/${Servlet.MachineName}
- # Database connectivity for Production.
- db.ConnectString = localhost:3306/gemini?jdbcCompliantTruncation=false&cachePrepStmts=true&prepStmtC
- db.LoginName = hello
- db.LoginPass = hello
- # For this application, we are not sending any outbound e-mail.
- OutboundMailEnabled = no
- # 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/
|