1234567891011121314151617181920212223 |
- # -----------------------------------------------------------------------
- # GEMINIHELLO configuration file
- #
- # DEVELOPMENT ENVIRONMENT
- #
- # The configuration attributes specified in this file should be common
- # across all Development deployments of the application.
- # -----------------------------------------------------------------------
- # Extend the baseline configuration.
- Extends = GeminiHello-Base.conf
- DeploymentDescription = Development/${Servlet.MachineName}
- # Database connectivity for Development.
- db.ConnectString = localhost:3306/hello_world?jdbcCompliantTruncation=false&elideSetAutoCommits=true&useLocalSessionState=true&cachePrepStmts=true&cacheCallableStmts=true&alwaysSendSetIsolation=false&prepStmtCacheSize=4096&cacheServerConfiguration=true&prepStmtCacheSqlLimit=2048&zeroDateTimeBehavior=convertToNull
- db.LoginName = root
- db.LoginPass = root
- # Disable outbound e-mail from the Development environment.
- OutboundMailEnabled = no
|