PageRenderTime 45ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/repo/src/main/properties/local/alfresco-global.properties

https://gitlab.com/AbdoulMounaf/alfresco-docubase
Properties File | 78 lines | 32 code | 11 blank | 35 comment | 0 complexity | 85796f77139708d65940e588c527c277 MD5 | raw file
  1. # Licensed to the Apache Software Foundation (ASF) under one or more
  2. # contributor license agreements. See the NOTICE file distributed with
  3. # this work for additional information regarding copyright ownership.
  4. # The ASF licenses this file to You under the Apache License, Version 2.0
  5. # (the "License"); you may not use this file except in compliance with
  6. # the License. You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. # RUN TIME PROPERTIES
  16. # -------------------
  17. ########################################################################################################################
  18. # Alfresco configuration for running locally
  19. #
  20. # Configuration when running Tomcat embedded from Maven.
  21. # This will create the alf_data_dev directory relative to Tomcat run folder.
  22. # Property values from the POM but it can also be edited here.
  23. ########################################################################################################################
  24. dir.root=${alfresco.data.location}
  25. # Alfresco Repo Webapp (alfresco.war) context, ports etc
  26. alfresco.context=alfresco
  27. alfresco.host=localhost
  28. alfresco.port=8080
  29. alfresco.protocol=http
  30. # Alfresco Share Webapp (share.war) context, ports etc
  31. share.context=share
  32. share.host=localhost
  33. share.port=8080
  34. share.protocol=http
  35. # Use Solr4 as that is used by default with Alfresco 5
  36. index.subsystem.name=solr4
  37. solr.host=localhost
  38. solr.port=8080
  39. solr.secureComms=none
  40. # Setting Solr backup for the future. Tweak this if needed (ideally in other env properties files)
  41. solr.backup.alfresco.cronExpression=0 30 2 * * ? 2050
  42. solr.backup.archive.cronExpression=0 30 3 * * ? 2050
  43. solr.backup.alfresco.remoteBackupLocation=${dir.root}/solr4Backup/alfresco
  44. solr.backup.archive.remoteBackupLocation=${dir.root}/solr4Backup/archive
  45. # We are in the local DEV properties file, no need for Solr backup
  46. solr.backup.alfresco.numberToKeep=0
  47. solr.backup.archive.numberToKeep=0
  48. # These jobs seem to require Lucene (Unsupported Operation with Solr) so we disable them / set to future date
  49. # See https://forums.alfresco.com/en/viewtopic.php?f=52&t=41597
  50. # If you want to enable them (and so full WQS functionality), please also set index.subsystem.name=lucene
  51. wcmqs.dynamicCollectionProcessor.schedule=0 30 2 * * ? 2060
  52. wcmqs.feedbackProcessor.schedule=0 40 2 * * ? 2060
  53. wcmqs.publishQueueProcessor.schedule=0 50 2 * * ? 2060
  54. # Fail or not when there are node integrity checker errors
  55. integrity.failOnError=true
  56. # Database connection properties
  57. db.driver=${alfresco.db.datasource.class}
  58. db.url=${alfresco.db.url}
  59. db.username=${alfresco.db.username}
  60. db.password=${alfresco.db.password}
  61. db.pool.initial=10
  62. db.pool.max=100
  63. hibernate.dialect=org.hibernate.dialect.H2Dialect
  64. # File servers related properties
  65. # For local runs we disable CIFS and FTP
  66. cifs.enabled=false
  67. ftp.enabled=false