ref: master
plugins/solr/config/solr.yml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# Config file for the acts_as_solr plugin. # # If you change the host or port number here, make sure you update # them in your Solr config file # No change is needed to support multitenancy. Only one solr environment will be used. # Just remember to use 'rake multitenancy:reindex' for reindexation. production: url: http://127.0.0.1:8983/solr jvm_options: -server -Xmx1920M -Xms640M timeout: 600 development: url: http://0.0.0.0:8982/solr jvm_options: -server -Xmx128M -Xms16M timeout: 600 test: &TEST url: http://0.0.0.0:8981/solr jvm_options: -server -Xmx128M -Xms16M timeout: 600 cucumber: <<: *TEST |