Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/drupalbox v0.1.1 #29

Merged
merged 10 commits into from
Aug 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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