Commit b7399ea99c5543d3df89d08997ac8cfc294629ee
1 parent
1bbb7864
Exists in
master
and in
28 other branches
Add Solr server config
Showing
1 changed file
with
17 additions
and
0 deletions
Show diff stats
| @@ -0,0 +1,17 @@ | @@ -0,0 +1,17 @@ | ||
| 1 | +# Config file for the acts_as_solr plugin. | ||
| 2 | +# | ||
| 3 | +# If you change the host or port number here, make sure you update | ||
| 4 | +# them in your Solr config file | ||
| 5 | + | ||
| 6 | +development: | ||
| 7 | + url: http://0.0.0.0:8982/solr | ||
| 8 | + jvm_options: -server -Xmx64M -Xms16M | ||
| 9 | + | ||
| 10 | +production: | ||
| 11 | + url: http://127.0.0.1:8983/solr | ||
| 12 | + jvm_options: -server -Xmx512M -Xms64M | ||
| 13 | + | ||
| 14 | +test: | ||
| 15 | + url: http://0.0.0.0:8981/solr | ||
| 16 | + jvm_options: -server -Xmx32M -Xms16M | ||
| 17 | + |