Skip to content

Commit

Permalink
Merge pull request #29 from palantirnet/release/drupalbox-v0.1.1
Browse files Browse the repository at this point in the history
Release/drupalbox v0.1.1
  • Loading branch information
mathewpeterson authored Aug 11, 2016
2 parents 8e5bd1f + f3eb8f0 commit 3ddb16b
Show file tree
Hide file tree
Showing 30 changed files with 4,888 additions and 13 deletions.
11 changes: 11 additions & 0 deletions drupalbox/CHANGELOG-0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.1.1] - 2016-08-11

### Added

- Added PHP Memcached extension
- Allowed remote Mysql connections for 'drupal' user

### Fixes

- Fixes issue with Solr and search_api_solr cores

## [0.1.0] - 2016-08-09

### Added
Expand Down
6 changes: 5 additions & 1 deletion drupalbox/drupalbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
php_ini_sendmail_path: "/usr/local/bin/mhsendmail"
jetty_server_enabled: false
jetty_server_java_options: "-Xmx256m -Djava.awt.headless=true -Dsolr.solr.home=/usr/share/solr/current"
solr_cores: []
solr_cores:
- name: drupal7
folder: search_api_solr-7x-1.11-4.x
- name: drupal8
folder: search_api_solr-8x-1.0-alpha5-4.x
vars_files:
- vars/default/common.yml
- vars/dev/mysql.yml
Expand Down
2 changes: 1 addition & 1 deletion drupalbox/ubuntu1404.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"iso_name": "ubuntu-14.04.4-server-amd64.iso",
"iso_path": "iso",
"iso_url": "http://releases.ubuntu.com/14.04/ubuntu-14.04.4-server-amd64.iso",
"version": "0.1.0"
"version": "0.1.1"
}
4 changes: 1 addition & 3 deletions provisioning/roles/solr/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
solr_mirror: https://archive.apache.org/dist/lucene/solr/
solr_version: 4.9.1

slf4j_api_version: 1.7.6
slf4j_api_path: "{{ solr_version_src_dir }}/dist/solrj-lib"
slf4j_api_file: "slf4j-api-{{ slf4j_api_version }}.jar"
slf4j_lib_path: "{{ solr_version_src_dir }}/example/lib/ext"

solr_app_name: solr

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8" ?>

<!--
This file allows you to boost certain search items to the top of search
results. You can find out an item's ID by searching directly on the Solr
server. The item IDs are in general constructed as follows:
Search API:
$document->id = $index_id . '-' . $item_id;
Apache Solr Search Integration:
$document->id = $site_hash . '/' . $entity_type . '/' . $entity->id;
If you want this file to be automatically re-loaded when a Solr commit takes
place (e.g., if you have an automatic script active which updates elevate.xml
according to newly-indexed data), place it into Solr's data/ directory.
Otherwise, place it with the other configuration files into the conf/
directory.
See http://wiki.apache.org/solr/QueryElevationComponent for more information.
-->

<elevate>
<!-- Example for ranking the node #1 first in searches for "example query": -->
<!--
<query text="example query">
<doc id="default_node_index-1" />
<doc id="7v3jsc/node/1" />
</query>
-->
<!-- Multiple <query> elements can be specified, contained in one <elevate>. -->
<!-- <query text="...">...</query> -->
</elevate>
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This file contains character mappings for the default fulltext field type.
# The source characters (on the left) will be replaced by the respective target
# characters before any other processing takes place.
# Lines starting with a pound character # are ignored.
#
# For sensible defaults, use the mapping-ISOLatin1Accent.txt file distributed
# with the example application of your Solr version.
#
# Examples:
# "À" => "A"
# "\u00c4" => "A"
# "\u00c4" => "\u0041"
# "æ" => "ae"
# "\n" => " "
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#-----------------------------------------------------------------------
# This file blocks words from being operated on by the stemmer and word delimiter.
&amp;
&lt;
&gt;
&#039;
&quot;
Loading

0 comments on commit 3ddb16b

Please sign in to comment.