123456789101112131415161718192021222324252627282930 |
- # -----------------------------------------------------------------------
- # 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
- # TODO: Edit these settings according to the particulars of the
- # Development environments.
- 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
- # You may want to disable the last login update on Development.
- #BasicSecurity.UpdateLastLogin = no
|