Created
November 1, 2012 16:38
-
-
Save bmatheny/3994901 to your computer and use it in GitHub Desktop.
Bare minimum collins config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include "validations.conf" | |
collins_conf_dir = "/Users/bmatheny/Downloads/collins/conf" | |
# Secret key | |
# ~~~~~ | |
# The secret key is used to secure cryptographics functions. | |
# If you deploy your application to several instances be sure to use the same | |
# key! | |
application.secret="AbFgHx0eJx8lalkja812389uasdlkajsdlka98012398uasdlkasdklajsd81298" | |
parsers.text.maxLength=1048576 | |
# Do not change the crypto key after you have started using it, you will be | |
# unable to decrypt data | |
crypto.key="lkkajsdlkajsdlkajsdlkajsdlkajsdlkajsdlkajsdlkajsdlkajsdlkajsdla" | |
# evolutionplugin should be disabled in a production environment | |
evolutionplugin=disabled | |
authentication { | |
permissionsFile = ${collins_conf_dir}"/permissions.yaml" | |
} | |
solr { | |
useEmbeddedServer = true | |
embeddedSolrHome = ${collins_conf_dir}"/solr/" | |
} | |
db.collins.logStatements=false | |
db.collins.password="" | |
db.collins.driver="com.mysql.jdbc.Driver" | |
db.collins.url="jdbc:mysql://localhost/collins?autoReconnect=true&interactiveClient=true" | |
db.collins.user="root" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment