solr.yml.dist
938 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# 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
# This file must follow a structure in order to achieve multitenancy
# support. In this example, we will configure solr to support 3
# different schemas: env1, env2 and env3.
#
# Each "hosted" environment must have an entry like this:
#
# production: &PRODUCTION
# url: http://127.0.0.1:8983/solr
# jvm_options: -server -Xmx192M -Xms64M
# timeout: 0
#
# env1_production:
# <<: *PRODUCTION
#
# env2_production:
# <<: *PRODUCTION
#
# env3_production:
# <<: *PRODUCTION
production:
url: http://127.0.0.1:8983/solr
jvm_options: -server -Xmx192M -Xms64M
timeout: 0
development:
url: http://0.0.0.0:8982/solr
jvm_options: -server -Xmx128M -Xms16M
timeout: 0
test: &TEST
url: http://0.0.0.0:8981/solr
jvm_options: -server -Xmx128M -Xms16M
timeout: 0
cucumber:
<<: *TEST