Commit f2319a0ac0d827a9bf9da98cdf96185e0e397ec1
1 parent
792bbe3c
Exists in
master
and in
29 other branches
Update package solr.yml
Showing
1 changed file
with
14 additions
and
1 deletions
Show diff stats
debian/solr.yml
... | ... | @@ -3,7 +3,20 @@ |
3 | 3 | # If you change the host or port number here, make sure you update |
4 | 4 | # them in your Solr config file |
5 | 5 | |
6 | +development: | |
7 | + url: http://0.0.0.0:8982/solr | |
8 | + jvm_options: -server -Xmx128M -Xms16M | |
9 | + timeout: 0 | |
10 | + | |
6 | 11 | production: |
7 | 12 | url: http://127.0.0.1:8983/solr |
8 | - jvm_options: -server -Xmx512M -Xms64M | |
13 | + jvm_options: -server -Xmx192M -Xms64M | |
14 | + timeout: 0 | |
9 | 15 | |
16 | +test: &TEST | |
17 | + url: http://0.0.0.0:8981/solr | |
18 | + jvm_options: -server -Xmx128M -Xms16M | |
19 | + timeout: 0 | |
20 | + | |
21 | +cucumber: | |
22 | + <<: *TEST | ... | ... |