├── .gitignore ├── LICENSE ├── Readme.md ├── apache.yml ├── config ├── apache │ ├── php5 │ │ └── custom_vars.ini │ └── sites-available │ │ ├── 000-unique-vhost.conf │ │ ├── 001-dynamic-vhost-ez5.conf │ │ ├── 002-dynamic-vhost-ezplatform.conf │ │ ├── 003-dynamic-vhost-ez4.conf │ │ ├── 004-dynamic-vhost.conf │ │ ├── ez5-common.conf │ │ └── ezplatform-common.conf ├── cli │ ├── cron.d │ │ ├── .gtikeep │ │ └── site │ └── php5 │ │ └── custom_vars.ini ├── haproxy │ └── haproxy.cfg ├── mysql │ ├── .gitkeep │ └── mysql.cnf ├── nginx │ ├── environment_common │ ├── ez5-common │ ├── fastcgi_common │ ├── fastcgi_common_php5 │ ├── php │ │ └── custom_vars.ini │ └── sites-enabled │ │ ├── 000-default │ │ ├── 002-dynamic-vhost │ │ └── 003-ez4-vhost ├── solr │ ├── README.txt │ ├── bin │ │ ├── abc │ │ ├── abo │ │ ├── backup │ │ ├── backupcleaner │ │ ├── commit │ │ ├── optimize │ │ ├── readercycle │ │ ├── rsyncd-disable │ │ ├── rsyncd-enable │ │ ├── rsyncd-start │ │ ├── rsyncd-stop │ │ ├── scripts-util │ │ ├── snapcleaner │ │ ├── snapinstaller │ │ ├── snappuller │ │ ├── snappuller-disable │ │ ├── snappuller-enable │ │ └── snapshooter │ ├── ezp-default │ │ └── conf │ │ │ ├── _rest_managed.json │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── custom-fields.xml │ │ │ ├── elevate.xml │ │ │ ├── language-specific-fieldtypes.xml │ │ │ ├── mapping-FoldToASCII.txt │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solrconfig.xml │ │ │ ├── spellings.txt │ │ │ ├── stopwords.txt │ │ │ ├── synonyms.txt │ │ │ ├── velocity │ │ │ ├── VM_global_library.vm │ │ │ ├── browse.vm │ │ │ ├── cluster.vm │ │ │ ├── clusterResults.vm │ │ │ ├── doc.vm │ │ │ ├── facet_dates.vm │ │ │ ├── facet_fields.vm │ │ │ ├── facet_queries.vm │ │ │ ├── facet_ranges.vm │ │ │ ├── facets.vm │ │ │ ├── footer.vm │ │ │ ├── head.vm │ │ │ ├── header.vm │ │ │ ├── hit.vm │ │ │ ├── jquery.autocomplete.css │ │ │ ├── jquery.autocomplete.js │ │ │ ├── layout.vm │ │ │ ├── main.css │ │ │ ├── query.vm │ │ │ ├── querySpatial.vm │ │ │ ├── suggest.vm │ │ │ └── tabs.vm │ │ │ └── xslt │ │ │ ├── example.xsl │ │ │ ├── example_atom.xsl │ │ │ ├── example_rss.xsl │ │ │ └── luke.xsl │ ├── ezplatform │ │ └── conf │ │ │ ├── _rest_managed.json │ │ │ ├── _schema_analysis_stopwords_english.json │ │ │ ├── _schema_analysis_synonyms_english.json │ │ │ ├── admin-extra.html │ │ │ ├── admin-extra.menu-bottom.html │ │ │ ├── admin-extra.menu-top.html │ │ │ ├── currency.xml │ │ │ ├── custom-fields-types.xml │ │ │ ├── elevate.xml │ │ │ ├── lang │ │ │ ├── contractions_ca.txt │ │ │ ├── contractions_fr.txt │ │ │ ├── contractions_ga.txt │ │ │ ├── contractions_it.txt │ │ │ ├── hyphenations_ga.txt │ │ │ ├── stemdict_nl.txt │ │ │ ├── stoptags_ja.txt │ │ │ ├── stopwords_ar.txt │ │ │ ├── stopwords_bg.txt │ │ │ ├── stopwords_ca.txt │ │ │ ├── stopwords_ckb.txt │ │ │ ├── stopwords_cz.txt │ │ │ ├── stopwords_da.txt │ │ │ ├── stopwords_de.txt │ │ │ ├── stopwords_el.txt │ │ │ ├── stopwords_en.txt │ │ │ ├── stopwords_es.txt │ │ │ ├── stopwords_eu.txt │ │ │ ├── stopwords_fa.txt │ │ │ ├── stopwords_fi.txt │ │ │ ├── stopwords_fr.txt │ │ │ ├── stopwords_ga.txt │ │ │ ├── stopwords_gl.txt │ │ │ ├── stopwords_hi.txt │ │ │ ├── stopwords_hu.txt │ │ │ ├── stopwords_hy.txt │ │ │ ├── stopwords_id.txt │ │ │ ├── stopwords_it.txt │ │ │ ├── stopwords_ja.txt │ │ │ ├── stopwords_lv.txt │ │ │ ├── stopwords_nl.txt │ │ │ ├── stopwords_no.txt │ │ │ ├── stopwords_pt.txt │ │ │ ├── stopwords_ro.txt │ │ │ ├── stopwords_ru.txt │ │ │ ├── stopwords_sv.txt │ │ │ ├── stopwords_th.txt │ │ │ ├── stopwords_tr.txt │ │ │ └── userdict_ja.txt │ │ │ ├── language-fieldtypes.xml │ │ │ ├── mapping-FoldToASCII.txt │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ ├── protwords.txt │ │ │ ├── schema.xml │ │ │ ├── scripts.conf │ │ │ ├── solr.languages │ │ │ ├── ar │ │ │ │ ├── language-fieldtypes.xml │ │ │ │ └── stopwords_ar.txt │ │ │ ├── cjk │ │ │ │ └── language-fieldtypes.xml │ │ │ ├── de │ │ │ │ ├── language-fieldtypes.xml │ │ │ │ └── stopwords_de.txt │ │ │ ├── en │ │ │ │ ├── language-fieldtypes.xml │ │ │ │ └── stopwords_en.txt │ │ │ ├── es │ │ │ │ ├── language-fieldtypes.xml │ │ │ │ └── stopwords_es.txt │ │ │ ├── fi │ │ │ │ ├── language-fieldtypes.xml │ │ │ │ └── stopwords_fi.txt │ │ │ ├── fr │ │ │ │ ├── contractions_fr.txt │ │ │ │ ├── language-fieldtypes.xml │ │ │ │ └── stopwords_fr.txt │ │ │ ├── hr │ │ │ │ ├── language-fieldtypes.xml │ │ │ │ └── stopwords_hr.txt │ │ │ ├── it │ │ │ │ ├── contractions_it.txt │ │ │ │ ├── language-fieldtypes.xml │ │ │ │ └── stopwords_it.txt │ │ │ ├── ja │ │ │ │ ├── language-fieldtypes.xml │ │ │ │ ├── stoptags_ja.txt │ │ │ │ └── stopwords_ja.txt │ │ │ ├── nl │ │ │ │ ├── language-fieldtypes.xml │ │ │ │ ├── stemdict_nl.txt │ │ │ │ └── stopwords_nl.txt │ │ │ ├── no │ │ │ │ ├── language-fieldtypes.xml │ │ │ │ └── stopwords_no.txt │ │ │ ├── pt │ │ │ │ ├── language-fieldtypes.xml │ │ │ │ └── stopwords_pt.txt │ │ │ └── ru │ │ │ │ ├── language-fieldtypes.xml │ │ │ │ └── stopwords_ru.txt │ │ │ ├── solrconfig.xml │ │ │ ├── spellings.txt │ │ │ ├── stopwords.txt │ │ │ ├── synonyms.txt │ │ │ ├── update-script.js │ │ │ ├── velocity │ │ │ ├── README.txt │ │ │ ├── VM_global_library.vm │ │ │ ├── browse.vm │ │ │ ├── cluster.vm │ │ │ ├── cluster_results.vm │ │ │ ├── debug.vm │ │ │ ├── did_you_mean.vm │ │ │ ├── error.vm │ │ │ ├── facet_fields.vm │ │ │ ├── facet_pivot.vm │ │ │ ├── facet_queries.vm │ │ │ ├── facet_ranges.vm │ │ │ ├── facets.vm │ │ │ ├── footer.vm │ │ │ ├── head.vm │ │ │ ├── header.vm │ │ │ ├── hit.vm │ │ │ ├── hit_grouped.vm │ │ │ ├── hit_plain.vm │ │ │ ├── join_doc.vm │ │ │ ├── jquery.autocomplete.css │ │ │ ├── jquery.autocomplete.js │ │ │ ├── layout.vm │ │ │ ├── main.css │ │ │ ├── mime_type_lists.vm │ │ │ ├── pagination_bottom.vm │ │ │ ├── pagination_top.vm │ │ │ ├── product_doc.vm │ │ │ ├── query.vm │ │ │ ├── query_form.vm │ │ │ ├── query_group.vm │ │ │ ├── query_spatial.vm │ │ │ ├── results_list.vm │ │ │ ├── richtext_doc.vm │ │ │ ├── suggest.vm │ │ │ └── tabs.vm │ │ │ └── xslt │ │ │ ├── example.xsl │ │ │ ├── example_atom.xsl │ │ │ ├── example_rss.xsl │ │ │ ├── luke.xsl │ │ │ └── updateXml.xsl │ ├── lib │ │ ├── attributes-binder-1.2.1.jar │ │ ├── carrot2-mini-3.9.0.jar │ │ ├── ezsystems-ezfind-solr-extension-solr-4.10.1.jar │ │ ├── hppc-0.5.2.jar │ │ ├── icu4j-53.1.jar │ │ ├── jackson-core-asl-1.9.13.jar │ │ ├── jackson-mapper-asl-1.9.13.jar │ │ ├── jsonic-1.2.7.jar │ │ ├── langdetect-1.1-20120112.jar │ │ ├── lucene-analyzers-icu-4.10.1.jar │ │ ├── lucene-analyzers-morfologik-4.10.1.jar │ │ ├── lucene-analyzers-smartcn-4.10.1.jar │ │ ├── lucene-analyzers-stempel-4.10.1.jar │ │ ├── mahout-collections-1.0.jar │ │ ├── mahout-math-0.6.jar │ │ ├── morfologik-fsa-1.7.1.jar │ │ ├── morfologik-polish-1.7.1.jar │ │ ├── morfologik-stemming-1.7.1.jar │ │ ├── simple-xml-2.7.jar │ │ ├── solr-analysis-extras-4.10.1.jar │ │ ├── solr-cell-4.10.1.jar │ │ ├── solr-clustering-4.10.1.jar │ │ ├── solr-core-4.10.1.jar │ │ ├── solr-dataimporthandler-4.10.1.jar │ │ ├── solr-dataimporthandler-extras-4.10.1.jar │ │ ├── solr-langid-4.10.1.jar │ │ ├── solr-map-reduce-4.10.1.jar │ │ ├── solr-morphlines-cell-4.10.1.jar │ │ ├── solr-morphlines-core-4.10.1.jar │ │ ├── solr-solrj-4.10.1.jar │ │ ├── solr-test-framework-4.10.1.jar │ │ ├── solr-uima-4.10.1.jar │ │ └── solr-velocity-4.10.1.jar │ ├── log4j.properties │ └── solr.xml └── varnish │ └── ez54.vcl ├── data ├── mysql │ └── .gitkeep └── solr │ └── .gitkeep ├── docker-compose-template.yml ├── docker-compose.env ├── images ├── apache_php54 │ ├── Dockerfile │ ├── Readme.md │ ├── apache2 │ │ ├── 010-controlpanel.conf │ │ ├── 010-default.conf │ │ └── ports.conf │ ├── bootstrap.sh │ ├── php5 │ │ └── apache2 │ │ │ └── newrelic.ini │ └── sites │ │ └── controlpanel │ │ ├── index.php │ │ ├── memcache │ │ ├── Config │ │ │ └── Memcache.php │ │ ├── Library │ │ │ ├── Command │ │ │ │ ├── Factory.php │ │ │ │ ├── Interface.php │ │ │ │ ├── Memcache.php │ │ │ │ ├── Memcached.php │ │ │ │ └── Server.php │ │ │ ├── Configuration │ │ │ │ └── Loader.php │ │ │ ├── Data │ │ │ │ ├── Analysis.php │ │ │ │ ├── Error.php │ │ │ │ └── Version.php │ │ │ ├── HTML │ │ │ │ └── Components.php │ │ │ └── Loader.php │ │ ├── Public │ │ │ ├── Images │ │ │ │ ├── 635855.png │ │ │ │ └── b5463f.png │ │ │ ├── Scripts │ │ │ │ └── Script.js │ │ │ └── Styles │ │ │ │ └── Style.css │ │ ├── Temp │ │ │ └── .version │ │ ├── View │ │ │ ├── Commands │ │ │ │ └── Commands.tpl │ │ │ ├── Configure │ │ │ │ └── Configure.tpl │ │ │ ├── Footer.tpl │ │ │ ├── Header.tpl │ │ │ ├── LiveStats │ │ │ │ ├── Frame.tpl │ │ │ │ └── Stats.tpl │ │ │ └── Stats │ │ │ │ ├── Error.tpl │ │ │ │ ├── Items.tpl │ │ │ │ ├── Slabs.tpl │ │ │ │ └── Stats.tpl │ │ ├── commands.php │ │ ├── configure.php │ │ ├── index.php │ │ └── stats.php │ │ ├── ocp.php │ │ ├── phpinfo.php │ │ └── phpmemadmin │ │ ├── .coveralls.yml │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ ├── .config │ │ └── templates │ │ │ ├── 403.tpl │ │ │ ├── buttons │ │ │ ├── append.tpl │ │ │ ├── decrement.tpl │ │ │ ├── delete.tpl │ │ │ ├── edit.tpl │ │ │ ├── increment.tpl │ │ │ └── prepend.tpl │ │ │ ├── charts │ │ │ └── memory.tpl │ │ │ ├── content-about.tpl │ │ │ ├── content-cluster-dashboard-environment.tpl │ │ │ ├── content-cluster-dashboard.tpl │ │ │ ├── content-data-management-entity.tpl │ │ │ ├── content-data-management.tpl │ │ │ ├── content-host-dashboard-average-load.tpl │ │ │ ├── content-host-dashboard-environment.tpl │ │ │ ├── content-host-dashboard-memory.tpl │ │ │ ├── content-host-dashboard-requests.tpl │ │ │ ├── content-host-dashboard-settings-entity.tpl │ │ │ ├── content-host-dashboard-settings.tpl │ │ │ ├── content-host-dashboard-stored-keys.tpl │ │ │ ├── content-host-dashboard.tpl │ │ │ ├── footer.tpl │ │ │ ├── header.tpl │ │ │ ├── message.tpl │ │ │ ├── messages │ │ │ ├── error.tpl │ │ │ ├── info.tpl │ │ │ └── success.tpl │ │ │ └── navigation │ │ │ └── entry.tpl │ │ ├── bin │ │ └── .gitkeep │ │ ├── composer.json │ │ ├── lib │ │ └── Clickalicious │ │ │ └── PhpMemAdmin │ │ │ ├── App.php │ │ │ ├── BaseInstaller.php │ │ │ ├── Bootstrap.php │ │ │ ├── Exception.php │ │ │ └── Installer.php │ │ ├── tests │ │ └── phpunit.xml │ │ └── web │ │ ├── assets │ │ ├── css │ │ │ └── ui.css │ │ ├── img │ │ │ ├── logo.png │ │ │ └── memcached-logo.png │ │ └── js │ │ │ ├── phpmemadmin.js │ │ │ └── ui.js │ │ └── index.php ├── apache_php56 │ ├── Dockerfile │ ├── Readme.md │ ├── apache2 │ │ ├── 000-default.conf │ │ ├── 010-controlpanel.conf │ │ └── ports.conf │ ├── bootstrap.sh │ ├── php5 │ │ └── apache2 │ │ │ └── newrelic.ini │ └── sites │ │ └── controlpanel │ │ ├── index.php │ │ ├── memcache │ │ ├── Config │ │ │ └── Memcache.php │ │ ├── Library │ │ │ ├── Command │ │ │ │ ├── Factory.php │ │ │ │ ├── Interface.php │ │ │ │ ├── Memcache.php │ │ │ │ ├── Memcached.php │ │ │ │ └── Server.php │ │ │ ├── Configuration │ │ │ │ └── Loader.php │ │ │ ├── Data │ │ │ │ ├── Analysis.php │ │ │ │ ├── Error.php │ │ │ │ └── Version.php │ │ │ ├── HTML │ │ │ │ └── Components.php │ │ │ └── Loader.php │ │ ├── Public │ │ │ ├── Images │ │ │ │ ├── 635855.png │ │ │ │ └── b5463f.png │ │ │ ├── Scripts │ │ │ │ └── Script.js │ │ │ └── Styles │ │ │ │ └── Style.css │ │ ├── Temp │ │ │ └── .version │ │ ├── View │ │ │ ├── Commands │ │ │ │ └── Commands.tpl │ │ │ ├── Configure │ │ │ │ └── Configure.tpl │ │ │ ├── Footer.tpl │ │ │ ├── Header.tpl │ │ │ ├── LiveStats │ │ │ │ ├── Frame.tpl │ │ │ │ └── Stats.tpl │ │ │ └── Stats │ │ │ │ ├── Error.tpl │ │ │ │ ├── Items.tpl │ │ │ │ ├── Slabs.tpl │ │ │ │ └── Stats.tpl │ │ ├── commands.php │ │ ├── configure.php │ │ ├── index.php │ │ └── stats.php │ │ ├── ocp.php │ │ ├── phpinfo.php │ │ └── phpmemadmin │ │ ├── .coveralls.yml │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ ├── .config │ │ └── templates │ │ │ ├── 403.tpl │ │ │ ├── buttons │ │ │ ├── append.tpl │ │ │ ├── decrement.tpl │ │ │ ├── delete.tpl │ │ │ ├── edit.tpl │ │ │ ├── increment.tpl │ │ │ └── prepend.tpl │ │ │ ├── charts │ │ │ └── memory.tpl │ │ │ ├── content-about.tpl │ │ │ ├── content-cluster-dashboard-environment.tpl │ │ │ ├── content-cluster-dashboard.tpl │ │ │ ├── content-data-management-entity.tpl │ │ │ ├── content-data-management.tpl │ │ │ ├── content-host-dashboard-average-load.tpl │ │ │ ├── content-host-dashboard-environment.tpl │ │ │ ├── content-host-dashboard-memory.tpl │ │ │ ├── content-host-dashboard-requests.tpl │ │ │ ├── content-host-dashboard-settings-entity.tpl │ │ │ ├── content-host-dashboard-settings.tpl │ │ │ ├── content-host-dashboard-stored-keys.tpl │ │ │ ├── content-host-dashboard.tpl │ │ │ ├── footer.tpl │ │ │ ├── header.tpl │ │ │ ├── message.tpl │ │ │ ├── messages │ │ │ ├── error.tpl │ │ │ ├── info.tpl │ │ │ └── success.tpl │ │ │ └── navigation │ │ │ └── entry.tpl │ │ ├── bin │ │ └── .gitkeep │ │ ├── composer.json │ │ ├── lib │ │ └── Clickalicious │ │ │ └── PhpMemAdmin │ │ │ ├── App.php │ │ │ ├── BaseInstaller.php │ │ │ ├── Bootstrap.php │ │ │ ├── Exception.php │ │ │ └── Installer.php │ │ ├── tests │ │ └── phpunit.xml │ │ └── web │ │ ├── assets │ │ ├── css │ │ │ └── ui.css │ │ ├── img │ │ │ ├── logo.png │ │ │ └── memcached-logo.png │ │ └── js │ │ │ ├── phpmemadmin.js │ │ │ └── ui.js │ │ └── index.php ├── apache_php7 │ ├── Dockerfile │ ├── Readme.md │ ├── apache2 │ │ ├── 000-default.conf │ │ ├── 010-controlpanel.conf │ │ └── ports.conf │ ├── bootstrap.sh │ ├── php5 │ │ └── apache2 │ │ │ └── newrelic.ini │ └── sites │ │ └── controlpanel │ │ ├── index.php │ │ ├── memcache │ │ ├── Config │ │ │ └── Memcache.php │ │ ├── Library │ │ │ ├── Command │ │ │ │ ├── Factory.php │ │ │ │ ├── Interface.php │ │ │ │ ├── Memcache.php │ │ │ │ ├── Memcached.php │ │ │ │ └── Server.php │ │ │ ├── Configuration │ │ │ │ └── Loader.php │ │ │ ├── Data │ │ │ │ ├── Analysis.php │ │ │ │ ├── Error.php │ │ │ │ └── Version.php │ │ │ ├── HTML │ │ │ │ └── Components.php │ │ │ └── Loader.php │ │ ├── Public │ │ │ ├── Images │ │ │ │ ├── 635855.png │ │ │ │ └── b5463f.png │ │ │ ├── Scripts │ │ │ │ └── Script.js │ │ │ └── Styles │ │ │ │ └── Style.css │ │ ├── Temp │ │ │ └── .version │ │ ├── View │ │ │ ├── Commands │ │ │ │ └── Commands.tpl │ │ │ ├── Configure │ │ │ │ └── Configure.tpl │ │ │ ├── Footer.tpl │ │ │ ├── Header.tpl │ │ │ ├── LiveStats │ │ │ │ ├── Frame.tpl │ │ │ │ └── Stats.tpl │ │ │ └── Stats │ │ │ │ ├── Error.tpl │ │ │ │ ├── Items.tpl │ │ │ │ ├── Slabs.tpl │ │ │ │ └── Stats.tpl │ │ ├── commands.php │ │ ├── configure.php │ │ ├── index.php │ │ └── stats.php │ │ ├── ocp.php │ │ ├── phpinfo.php │ │ └── phpmemadmin │ │ ├── .coveralls.yml │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ ├── .config │ │ └── templates │ │ │ ├── 403.tpl │ │ │ ├── buttons │ │ │ ├── append.tpl │ │ │ ├── decrement.tpl │ │ │ ├── delete.tpl │ │ │ ├── edit.tpl │ │ │ ├── increment.tpl │ │ │ └── prepend.tpl │ │ │ ├── charts │ │ │ └── memory.tpl │ │ │ ├── content-about.tpl │ │ │ ├── content-cluster-dashboard-environment.tpl │ │ │ ├── content-cluster-dashboard.tpl │ │ │ ├── content-data-management-entity.tpl │ │ │ ├── content-data-management.tpl │ │ │ ├── content-host-dashboard-average-load.tpl │ │ │ ├── content-host-dashboard-environment.tpl │ │ │ ├── content-host-dashboard-memory.tpl │ │ │ ├── content-host-dashboard-requests.tpl │ │ │ ├── content-host-dashboard-settings-entity.tpl │ │ │ ├── content-host-dashboard-settings.tpl │ │ │ ├── content-host-dashboard-stored-keys.tpl │ │ │ ├── content-host-dashboard.tpl │ │ │ ├── footer.tpl │ │ │ ├── header.tpl │ │ │ ├── message.tpl │ │ │ ├── messages │ │ │ ├── error.tpl │ │ │ ├── info.tpl │ │ │ └── success.tpl │ │ │ └── navigation │ │ │ └── entry.tpl │ │ ├── bin │ │ └── .gitkeep │ │ ├── composer.json │ │ ├── lib │ │ └── Clickalicious │ │ │ └── PhpMemAdmin │ │ │ ├── App.php │ │ │ ├── BaseInstaller.php │ │ │ ├── Bootstrap.php │ │ │ ├── Exception.php │ │ │ └── Installer.php │ │ ├── tests │ │ └── phpunit.xml │ │ └── web │ │ ├── assets │ │ ├── css │ │ │ └── ui.css │ │ ├── img │ │ │ ├── logo.png │ │ │ └── memcached-logo.png │ │ └── js │ │ │ ├── phpmemadmin.js │ │ │ └── ui.js │ │ └── index.php ├── cli_php54 │ ├── Dockerfile │ ├── Readme.md │ ├── bootstrap.sh │ └── profile │ │ ├── .bashrc_append │ │ ├── .gitconfig │ │ └── .vimrc_append ├── cli_php56 │ ├── Dockerfile │ ├── Readme.md │ ├── bootstrap.sh │ └── profile │ │ ├── .bashrc_append │ │ ├── .gitconfig │ │ └── .vimrc_append ├── cli_php7 │ ├── Dockerfile │ ├── Readme.md │ ├── bootstrap.sh │ └── profile │ │ ├── .bashrc_append │ │ ├── .gitconfig │ │ └── .vimrc_append ├── cli_php71 │ ├── Dockerfile │ ├── Readme.md │ ├── bootstrap.sh │ └── profile │ │ ├── .bashrc_append │ │ ├── .gitconfig │ │ └── .vimrc_append ├── haproxy │ ├── Dockerfile │ ├── Readme.md │ ├── bootstrap.sh │ ├── docker-compose.yml │ ├── haproxy.cfg │ └── haproxy_example_kaliop.cfg ├── memcached │ ├── Dockerfile │ ├── Readme.md │ ├── bootstrap.sh │ └── memcached.conf ├── mysql │ ├── Dockerfile │ ├── Readme.md │ └── bootstrap.sh ├── nginx_php71 │ ├── Dockerfile │ ├── Readme.md │ ├── bootstrap.sh │ ├── etc │ │ └── nginx │ │ │ ├── conf.d │ │ │ └── 010-controlpanel.conf │ │ │ └── sites-available │ │ │ └── default │ └── sites │ │ └── controlpanel │ │ ├── index.php │ │ ├── memcache │ │ ├── Config │ │ │ └── Memcache.php │ │ ├── Library │ │ │ ├── Command │ │ │ │ ├── Factory.php │ │ │ │ ├── Interface.php │ │ │ │ ├── Memcache.php │ │ │ │ ├── Memcached.php │ │ │ │ └── Server.php │ │ │ ├── Configuration │ │ │ │ └── Loader.php │ │ │ ├── Data │ │ │ │ ├── Analysis.php │ │ │ │ ├── Error.php │ │ │ │ └── Version.php │ │ │ ├── HTML │ │ │ │ └── Components.php │ │ │ └── Loader.php │ │ ├── Public │ │ │ ├── Images │ │ │ │ ├── 635855.png │ │ │ │ └── b5463f.png │ │ │ ├── Scripts │ │ │ │ └── Script.js │ │ │ └── Styles │ │ │ │ └── Style.css │ │ ├── Temp │ │ │ └── .version │ │ ├── View │ │ │ ├── Commands │ │ │ │ └── Commands.tpl │ │ │ ├── Configure │ │ │ │ └── Configure.tpl │ │ │ ├── Footer.tpl │ │ │ ├── Header.tpl │ │ │ ├── LiveStats │ │ │ │ ├── Frame.tpl │ │ │ │ └── Stats.tpl │ │ │ └── Stats │ │ │ │ ├── Error.tpl │ │ │ │ ├── Items.tpl │ │ │ │ ├── Slabs.tpl │ │ │ │ └── Stats.tpl │ │ ├── commands.php │ │ ├── configure.php │ │ ├── index.php │ │ └── stats.php │ │ ├── ocp.php │ │ ├── phpinfo.php │ │ └── phpmemadmin │ │ ├── .coveralls.yml │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ ├── .config │ │ └── templates │ │ │ ├── 403.tpl │ │ │ ├── buttons │ │ │ ├── append.tpl │ │ │ ├── decrement.tpl │ │ │ ├── delete.tpl │ │ │ ├── edit.tpl │ │ │ ├── increment.tpl │ │ │ └── prepend.tpl │ │ │ ├── charts │ │ │ └── memory.tpl │ │ │ ├── content-about.tpl │ │ │ ├── content-cluster-dashboard-environment.tpl │ │ │ ├── content-cluster-dashboard.tpl │ │ │ ├── content-data-management-entity.tpl │ │ │ ├── content-data-management.tpl │ │ │ ├── content-host-dashboard-average-load.tpl │ │ │ ├── content-host-dashboard-environment.tpl │ │ │ ├── content-host-dashboard-memory.tpl │ │ │ ├── content-host-dashboard-requests.tpl │ │ │ ├── content-host-dashboard-settings-entity.tpl │ │ │ ├── content-host-dashboard-settings.tpl │ │ │ ├── content-host-dashboard-stored-keys.tpl │ │ │ ├── content-host-dashboard.tpl │ │ │ ├── footer.tpl │ │ │ ├── header.tpl │ │ │ ├── message.tpl │ │ │ ├── messages │ │ │ ├── error.tpl │ │ │ ├── info.tpl │ │ │ └── success.tpl │ │ │ └── navigation │ │ │ └── entry.tpl │ │ ├── bin │ │ └── .gitkeep │ │ ├── composer.json │ │ ├── lib │ │ └── Clickalicious │ │ │ └── PhpMemAdmin │ │ │ ├── App.php │ │ │ ├── BaseInstaller.php │ │ │ ├── Bootstrap.php │ │ │ ├── Exception.php │ │ │ └── Installer.php │ │ ├── tests │ │ └── phpunit.xml │ │ └── web │ │ ├── assets │ │ ├── css │ │ │ └── ui.css │ │ ├── img │ │ │ ├── logo.png │ │ │ └── memcached-logo.png │ │ └── js │ │ │ ├── phpmemadmin.js │ │ │ └── ui.js │ │ └── index.php ├── php54 │ ├── Dockerfile │ └── Readme.md ├── php56 │ ├── Dockerfile │ └── Readme.md ├── php7 │ ├── Dockerfile │ └── Readme.md ├── php71 │ ├── Dockerfile │ └── Readme.md ├── solr4 │ ├── Dockerfile │ ├── Readme.md │ ├── bootstrap.sh │ ├── docker-compose.yml │ ├── init │ │ └── solr │ └── solr_4.10 │ │ ├── README.txt │ │ ├── SOLR-EXTENSION-HOWTO.txt │ │ ├── contexts │ │ └── solr-jetty-context.xml │ │ ├── etc │ │ ├── jetty.xml │ │ └── webdefault.xml │ │ ├── lib │ │ ├── ext │ │ │ ├── jcl-over-slf4j-1.7.6.jar │ │ │ ├── jul-to-slf4j-1.7.6.jar │ │ │ ├── log4j-1.2.17.jar │ │ │ ├── slf4j-api-1.7.6.jar │ │ │ └── slf4j-log4j12-1.7.6.jar │ │ ├── jetty-continuation-8.1.10.v20130312.jar │ │ ├── jetty-deploy-8.1.10.v20130312.jar │ │ ├── jetty-http-8.1.10.v20130312.jar │ │ ├── jetty-io-8.1.10.v20130312.jar │ │ ├── jetty-jmx-8.1.10.v20130312.jar │ │ ├── jetty-security-8.1.10.v20130312.jar │ │ ├── jetty-server-8.1.10.v20130312.jar │ │ ├── jetty-servlet-8.1.10.v20130312.jar │ │ ├── jetty-util-8.1.10.v20130312.jar │ │ ├── jetty-webapp-8.1.10.v20130312.jar │ │ ├── jetty-xml-8.1.10.v20130312.jar │ │ ├── mysql-connector-java-5.1.34.jar │ │ └── servlet-api-3.0.jar │ │ ├── logs │ │ └── stub.log │ │ ├── resources │ │ └── log4j.properties │ │ ├── solr.languages │ │ ├── README.txt │ │ ├── ar │ │ │ ├── language-specific-fieldtypes.xml │ │ │ └── stopwords_ar.txt │ │ ├── cjk │ │ │ └── language-specific-fieldtypes.xml │ │ ├── de │ │ │ ├── language-specific-fieldtypes.xml │ │ │ └── stopwords_de.txt │ │ ├── en │ │ │ ├── language-specific-fieldtypes.xml │ │ │ └── stopwords_en.txt │ │ ├── es │ │ │ ├── language-specific-fieldtypes.xml │ │ │ └── stopwords_es.txt │ │ ├── fi │ │ │ ├── language-specific-fieldtypes.xml │ │ │ └── stopwords_fi.txt │ │ ├── fr │ │ │ ├── contractions_fr.txt │ │ │ ├── language-specific-fieldtypes.xml │ │ │ └── stopwords_fr.txt │ │ ├── it │ │ │ ├── contractions_it.txt │ │ │ ├── language-specific-fieldtypes.xml │ │ │ └── stopwords_it.txt │ │ ├── ja │ │ │ └── language-specific-fieldtypes.xml │ │ ├── nl │ │ │ ├── language-specific-fieldtypes.xml │ │ │ ├── stemdict_nl.txt │ │ │ └── stopwords_nl.txt │ │ ├── no │ │ │ ├── language-specific-fieldtypes.xml │ │ │ └── stopwords_no.txt │ │ └── pt │ │ │ ├── language-specific-fieldtypes.xml │ │ │ └── stopwords_pt.txt │ │ ├── solr.sh │ │ ├── solr │ │ ├── README.txt │ │ ├── bin │ │ │ ├── abc │ │ │ ├── abo │ │ │ ├── backup │ │ │ ├── backupcleaner │ │ │ ├── commit │ │ │ ├── optimize │ │ │ ├── readercycle │ │ │ ├── rsyncd-disable │ │ │ ├── rsyncd-enable │ │ │ ├── rsyncd-start │ │ │ ├── rsyncd-stop │ │ │ ├── scripts-util │ │ │ ├── snapcleaner │ │ │ ├── snapinstaller │ │ │ ├── snappuller │ │ │ ├── snappuller-disable │ │ │ ├── snappuller-enable │ │ │ └── snapshooter │ │ ├── ezp-default │ │ │ └── conf │ │ │ │ ├── admin-extra.html │ │ │ │ ├── admin-extra.menu-bottom.html │ │ │ │ ├── admin-extra.menu-top.html │ │ │ │ ├── custom-fields.xml │ │ │ │ ├── elevate.xml │ │ │ │ ├── language-specific-fieldtypes.xml │ │ │ │ ├── mapping-FoldToASCII.txt │ │ │ │ ├── mapping-ISOLatin1Accent.txt │ │ │ │ ├── protwords.txt │ │ │ │ ├── schema.xml │ │ │ │ ├── scripts.conf │ │ │ │ ├── solrconfig.xml │ │ │ │ ├── spellings.txt │ │ │ │ ├── stopwords.txt │ │ │ │ ├── synonyms.txt │ │ │ │ ├── velocity │ │ │ │ ├── VM_global_library.vm │ │ │ │ ├── browse.vm │ │ │ │ ├── cluster.vm │ │ │ │ ├── clusterResults.vm │ │ │ │ ├── doc.vm │ │ │ │ ├── facet_dates.vm │ │ │ │ ├── facet_fields.vm │ │ │ │ ├── facet_queries.vm │ │ │ │ ├── facet_ranges.vm │ │ │ │ ├── facets.vm │ │ │ │ ├── footer.vm │ │ │ │ ├── head.vm │ │ │ │ ├── header.vm │ │ │ │ ├── hit.vm │ │ │ │ ├── jquery.autocomplete.css │ │ │ │ ├── jquery.autocomplete.js │ │ │ │ ├── layout.vm │ │ │ │ ├── main.css │ │ │ │ ├── query.vm │ │ │ │ ├── querySpatial.vm │ │ │ │ ├── suggest.vm │ │ │ │ └── tabs.vm │ │ │ │ └── xslt │ │ │ │ ├── example.xsl │ │ │ │ ├── example_atom.xsl │ │ │ │ ├── example_rss.xsl │ │ │ │ └── luke.xsl │ │ ├── lib │ │ │ ├── attributes-binder-1.2.1.jar │ │ │ ├── carrot2-mini-3.9.0.jar │ │ │ ├── ezsystems-ezfind-solr-extension-solr-4.10.1.jar │ │ │ ├── hppc-0.5.2.jar │ │ │ ├── icu4j-53.1.jar │ │ │ ├── jackson-core-asl-1.9.13.jar │ │ │ ├── jackson-mapper-asl-1.9.13.jar │ │ │ ├── jsonic-1.2.7.jar │ │ │ ├── langdetect-1.1-20120112.jar │ │ │ ├── lucene-analyzers-icu-4.10.1.jar │ │ │ ├── lucene-analyzers-morfologik-4.10.1.jar │ │ │ ├── lucene-analyzers-smartcn-4.10.1.jar │ │ │ ├── lucene-analyzers-stempel-4.10.1.jar │ │ │ ├── mahout-collections-1.0.jar │ │ │ ├── mahout-math-0.6.jar │ │ │ ├── morfologik-fsa-1.7.1.jar │ │ │ ├── morfologik-polish-1.7.1.jar │ │ │ ├── morfologik-stemming-1.7.1.jar │ │ │ ├── simple-xml-2.7.jar │ │ │ ├── solr-analysis-extras-4.10.1.jar │ │ │ ├── solr-cell-4.10.1.jar │ │ │ ├── solr-clustering-4.10.1.jar │ │ │ ├── solr-core-4.10.1.jar │ │ │ ├── solr-dataimporthandler-4.10.1.jar │ │ │ ├── solr-dataimporthandler-extras-4.10.1.jar │ │ │ ├── solr-langid-4.10.1.jar │ │ │ ├── solr-map-reduce-4.10.1.jar │ │ │ ├── solr-morphlines-cell-4.10.1.jar │ │ │ ├── solr-morphlines-core-4.10.1.jar │ │ │ ├── solr-solrj-4.10.1.jar │ │ │ ├── solr-test-framework-4.10.1.jar │ │ │ ├── solr-uima-4.10.1.jar │ │ │ └── solr-velocity-4.10.1.jar │ │ └── solr.xml │ │ ├── src │ │ └── ezfind │ │ │ ├── build.xml │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── ezsystems │ │ │ └── solr │ │ │ └── handler │ │ │ └── ezfind │ │ │ └── eZFindRequestHandler.java │ │ ├── start.jar │ │ └── webapps │ │ ├── solr.war │ │ └── webapp │ │ └── WEB-INF │ │ └── lib │ │ └── jts-1.13.jar ├── varnish40 │ ├── Dockerfile │ ├── Readme.md │ ├── bootstrap.sh │ ├── docker-compose.yml │ └── etc │ │ ├── default │ │ ├── varnish │ │ └── varnishncsa │ │ └── init.d │ │ └── varnishncsa └── varnish41 │ ├── Dockerfile │ ├── Readme.md │ ├── bootstrap.sh │ ├── docker-compose.yml │ └── etc │ ├── default │ ├── varnish │ └── varnishncsa │ └── init.d │ └── varnishncsa ├── logs ├── apache │ └── .gitkeep ├── cli │ └── .gitkeep ├── memcache │ └── .gitkeep ├── mysql │ └── .gitkeep ├── nginx │ └── .gitkeep ├── solr │ └── .gitkeep └── varnish │ └── .gitkeep ├── nginx.yml └── stack.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/Readme.md -------------------------------------------------------------------------------- /apache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/apache.yml -------------------------------------------------------------------------------- /config/apache/php5/custom_vars.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/apache/php5/custom_vars.ini -------------------------------------------------------------------------------- /config/apache/sites-available/000-unique-vhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/apache/sites-available/000-unique-vhost.conf -------------------------------------------------------------------------------- /config/apache/sites-available/001-dynamic-vhost-ez5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/apache/sites-available/001-dynamic-vhost-ez5.conf -------------------------------------------------------------------------------- /config/apache/sites-available/002-dynamic-vhost-ezplatform.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/apache/sites-available/002-dynamic-vhost-ezplatform.conf -------------------------------------------------------------------------------- /config/apache/sites-available/003-dynamic-vhost-ez4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/apache/sites-available/003-dynamic-vhost-ez4.conf -------------------------------------------------------------------------------- /config/apache/sites-available/004-dynamic-vhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/apache/sites-available/004-dynamic-vhost.conf -------------------------------------------------------------------------------- /config/apache/sites-available/ez5-common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/apache/sites-available/ez5-common.conf -------------------------------------------------------------------------------- /config/apache/sites-available/ezplatform-common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/apache/sites-available/ezplatform-common.conf -------------------------------------------------------------------------------- /config/cli/cron.d/.gtikeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/cli/cron.d/site: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/cli/cron.d/site -------------------------------------------------------------------------------- /config/cli/php5/custom_vars.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/cli/php5/custom_vars.ini -------------------------------------------------------------------------------- /config/haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/haproxy/haproxy.cfg -------------------------------------------------------------------------------- /config/mysql/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/mysql/mysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/mysql/mysql.cnf -------------------------------------------------------------------------------- /config/nginx/environment_common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/nginx/environment_common -------------------------------------------------------------------------------- /config/nginx/ez5-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/nginx/ez5-common -------------------------------------------------------------------------------- /config/nginx/fastcgi_common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/nginx/fastcgi_common -------------------------------------------------------------------------------- /config/nginx/fastcgi_common_php5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/nginx/fastcgi_common_php5 -------------------------------------------------------------------------------- /config/nginx/php/custom_vars.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/nginx/php/custom_vars.ini -------------------------------------------------------------------------------- /config/nginx/sites-enabled/000-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/nginx/sites-enabled/000-default -------------------------------------------------------------------------------- /config/nginx/sites-enabled/002-dynamic-vhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/nginx/sites-enabled/002-dynamic-vhost -------------------------------------------------------------------------------- /config/nginx/sites-enabled/003-ez4-vhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/nginx/sites-enabled/003-ez4-vhost -------------------------------------------------------------------------------- /config/solr/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/README.txt -------------------------------------------------------------------------------- /config/solr/bin/abc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/abc -------------------------------------------------------------------------------- /config/solr/bin/abo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/abo -------------------------------------------------------------------------------- /config/solr/bin/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/backup -------------------------------------------------------------------------------- /config/solr/bin/backupcleaner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/backupcleaner -------------------------------------------------------------------------------- /config/solr/bin/commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/commit -------------------------------------------------------------------------------- /config/solr/bin/optimize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/optimize -------------------------------------------------------------------------------- /config/solr/bin/readercycle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/readercycle -------------------------------------------------------------------------------- /config/solr/bin/rsyncd-disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/rsyncd-disable -------------------------------------------------------------------------------- /config/solr/bin/rsyncd-enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/rsyncd-enable -------------------------------------------------------------------------------- /config/solr/bin/rsyncd-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/rsyncd-start -------------------------------------------------------------------------------- /config/solr/bin/rsyncd-stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/rsyncd-stop -------------------------------------------------------------------------------- /config/solr/bin/scripts-util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/scripts-util -------------------------------------------------------------------------------- /config/solr/bin/snapcleaner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/snapcleaner -------------------------------------------------------------------------------- /config/solr/bin/snapinstaller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/snapinstaller -------------------------------------------------------------------------------- /config/solr/bin/snappuller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/snappuller -------------------------------------------------------------------------------- /config/solr/bin/snappuller-disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/snappuller-disable -------------------------------------------------------------------------------- /config/solr/bin/snappuller-enable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/snappuller-enable -------------------------------------------------------------------------------- /config/solr/bin/snapshooter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/bin/snapshooter -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/_rest_managed.json: -------------------------------------------------------------------------------- 1 | { 2 | "initArgs":{}, 3 | "managedList":[]} -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/admin-extra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/admin-extra.html -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/admin-extra.menu-bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/admin-extra.menu-bottom.html -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/admin-extra.menu-top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/admin-extra.menu-top.html -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/custom-fields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/custom-fields.xml -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/elevate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/mapping-FoldToASCII.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/mapping-FoldToASCII.txt -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/mapping-ISOLatin1Accent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/mapping-ISOLatin1Accent.txt -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/protwords.txt -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/schema.xml -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/scripts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/scripts.conf -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/solrconfig.xml -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/stopwords.txt -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/synonyms.txt -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/VM_global_library.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/VM_global_library.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/browse.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/browse.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/cluster.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/cluster.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/clusterResults.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/clusterResults.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/doc.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/doc.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/facet_dates.vm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/facet_fields.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/facet_fields.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/facet_queries.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/facet_queries.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/facet_ranges.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/facet_ranges.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/facets.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/facets.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/footer.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/footer.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/head.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/head.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/header.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/header.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/hit.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/hit.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/jquery.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/jquery.autocomplete.css -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/jquery.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/jquery.autocomplete.js -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/layout.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/layout.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/main.css -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/query.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/query.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/querySpatial.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/querySpatial.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/suggest.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/suggest.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/velocity/tabs.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/velocity/tabs.vm -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/xslt/example.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/xslt/example.xsl -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/xslt/example_atom.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/xslt/example_atom.xsl -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/xslt/example_rss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/xslt/example_rss.xsl -------------------------------------------------------------------------------- /config/solr/ezp-default/conf/xslt/luke.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezp-default/conf/xslt/luke.xsl -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/_rest_managed.json: -------------------------------------------------------------------------------- 1 | {"initArgs":{},"managedList":[]} 2 | -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/_schema_analysis_stopwords_english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/_schema_analysis_stopwords_english.json -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/_schema_analysis_synonyms_english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/_schema_analysis_synonyms_english.json -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/admin-extra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/admin-extra.html -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/admin-extra.menu-bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/admin-extra.menu-bottom.html -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/admin-extra.menu-top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/admin-extra.menu-top.html -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/currency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/currency.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/custom-fields-types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/custom-fields-types.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/elevate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/elevate.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/contractions_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/contractions_ca.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/contractions_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/contractions_fr.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/contractions_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/contractions_ga.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/contractions_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/contractions_it.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/hyphenations_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/hyphenations_ga.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stemdict_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stemdict_nl.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stoptags_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stoptags_ja.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_ar.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_bg.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_ca.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_ckb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_ckb.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_cz.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_da.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_de.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_el.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_en.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_es.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_eu.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_fa.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_fi.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_fr.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_ga.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_gl.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_hi.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_hu.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_hy.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_id.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_it.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_ja.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_lv.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_nl.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_no.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_pt.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_ro.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_ru.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_sv.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_th.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/stopwords_tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/stopwords_tr.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/lang/userdict_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/lang/userdict_ja.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/mapping-FoldToASCII.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/mapping-FoldToASCII.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/mapping-ISOLatin1Accent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/mapping-ISOLatin1Accent.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/protwords.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/schema.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/scripts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/scripts.conf -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/ar/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/ar/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/ar/stopwords_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/ar/stopwords_ar.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/cjk/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/cjk/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/de/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/de/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/de/stopwords_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/de/stopwords_de.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/en/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/en/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/en/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/en/stopwords_en.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/es/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/es/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/es/stopwords_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/es/stopwords_es.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/fi/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/fi/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/fi/stopwords_fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/fi/stopwords_fi.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/fr/contractions_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/fr/contractions_fr.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/fr/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/fr/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/fr/stopwords_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/fr/stopwords_fr.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/hr/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/hr/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/hr/stopwords_hr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/hr/stopwords_hr.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/it/contractions_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/it/contractions_it.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/it/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/it/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/it/stopwords_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/it/stopwords_it.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/ja/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/ja/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/ja/stoptags_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/ja/stoptags_ja.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/ja/stopwords_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/ja/stopwords_ja.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/nl/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/nl/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/nl/stemdict_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/nl/stemdict_nl.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/nl/stopwords_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/nl/stopwords_nl.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/no/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/no/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/no/stopwords_no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/no/stopwords_no.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/pt/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/pt/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/pt/stopwords_pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/pt/stopwords_pt.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/ru/language-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/ru/language-fieldtypes.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solr.languages/ru/stopwords_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solr.languages/ru/stopwords_ru.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/solrconfig.xml -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/stopwords.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/synonyms.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/update-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/update-script.js -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/README.txt -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/VM_global_library.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/VM_global_library.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/browse.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/browse.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/cluster.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/cluster.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/cluster_results.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/cluster_results.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/debug.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/debug.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/did_you_mean.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/did_you_mean.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/error.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/error.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/facet_fields.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/facet_fields.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/facet_pivot.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/facet_pivot.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/facet_queries.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/facet_queries.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/facet_ranges.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/facet_ranges.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/facets.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/facets.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/footer.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/footer.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/head.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/head.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/header.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/header.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/hit.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/hit.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/hit_grouped.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/hit_grouped.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/hit_plain.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/hit_plain.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/join_doc.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/join_doc.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/jquery.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/jquery.autocomplete.css -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/jquery.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/jquery.autocomplete.js -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/layout.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/layout.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/main.css -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/mime_type_lists.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/mime_type_lists.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/pagination_bottom.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/pagination_bottom.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/pagination_top.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/pagination_top.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/product_doc.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/product_doc.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/query.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/query.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/query_form.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/query_form.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/query_group.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/query_group.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/query_spatial.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/query_spatial.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/results_list.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/results_list.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/richtext_doc.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/richtext_doc.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/suggest.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/suggest.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/velocity/tabs.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/velocity/tabs.vm -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/xslt/example.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/xslt/example.xsl -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/xslt/example_atom.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/xslt/example_atom.xsl -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/xslt/example_rss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/xslt/example_rss.xsl -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/xslt/luke.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/xslt/luke.xsl -------------------------------------------------------------------------------- /config/solr/ezplatform/conf/xslt/updateXml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/ezplatform/conf/xslt/updateXml.xsl -------------------------------------------------------------------------------- /config/solr/lib/attributes-binder-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/attributes-binder-1.2.1.jar -------------------------------------------------------------------------------- /config/solr/lib/carrot2-mini-3.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/carrot2-mini-3.9.0.jar -------------------------------------------------------------------------------- /config/solr/lib/ezsystems-ezfind-solr-extension-solr-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/ezsystems-ezfind-solr-extension-solr-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/hppc-0.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/hppc-0.5.2.jar -------------------------------------------------------------------------------- /config/solr/lib/icu4j-53.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/icu4j-53.1.jar -------------------------------------------------------------------------------- /config/solr/lib/jackson-core-asl-1.9.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/jackson-core-asl-1.9.13.jar -------------------------------------------------------------------------------- /config/solr/lib/jackson-mapper-asl-1.9.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/jackson-mapper-asl-1.9.13.jar -------------------------------------------------------------------------------- /config/solr/lib/jsonic-1.2.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/jsonic-1.2.7.jar -------------------------------------------------------------------------------- /config/solr/lib/langdetect-1.1-20120112.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/langdetect-1.1-20120112.jar -------------------------------------------------------------------------------- /config/solr/lib/lucene-analyzers-icu-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/lucene-analyzers-icu-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/lucene-analyzers-morfologik-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/lucene-analyzers-morfologik-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/lucene-analyzers-smartcn-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/lucene-analyzers-smartcn-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/lucene-analyzers-stempel-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/lucene-analyzers-stempel-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/mahout-collections-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/mahout-collections-1.0.jar -------------------------------------------------------------------------------- /config/solr/lib/mahout-math-0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/mahout-math-0.6.jar -------------------------------------------------------------------------------- /config/solr/lib/morfologik-fsa-1.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/morfologik-fsa-1.7.1.jar -------------------------------------------------------------------------------- /config/solr/lib/morfologik-polish-1.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/morfologik-polish-1.7.1.jar -------------------------------------------------------------------------------- /config/solr/lib/morfologik-stemming-1.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/morfologik-stemming-1.7.1.jar -------------------------------------------------------------------------------- /config/solr/lib/simple-xml-2.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/simple-xml-2.7.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-analysis-extras-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-analysis-extras-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-cell-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-cell-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-clustering-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-clustering-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-core-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-core-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-dataimporthandler-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-dataimporthandler-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-dataimporthandler-extras-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-dataimporthandler-extras-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-langid-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-langid-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-map-reduce-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-map-reduce-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-morphlines-cell-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-morphlines-cell-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-morphlines-core-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-morphlines-core-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-solrj-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-solrj-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-test-framework-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-test-framework-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-uima-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-uima-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/lib/solr-velocity-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/lib/solr-velocity-4.10.1.jar -------------------------------------------------------------------------------- /config/solr/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/log4j.properties -------------------------------------------------------------------------------- /config/solr/solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/solr/solr.xml -------------------------------------------------------------------------------- /config/varnish/ez54.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/config/varnish/ez54.vcl -------------------------------------------------------------------------------- /data/mysql/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/solr/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /docker-compose-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/docker-compose-template.yml -------------------------------------------------------------------------------- /docker-compose.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/docker-compose.env -------------------------------------------------------------------------------- /images/apache_php54/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/Dockerfile -------------------------------------------------------------------------------- /images/apache_php54/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/Readme.md -------------------------------------------------------------------------------- /images/apache_php54/apache2/010-controlpanel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/apache2/010-controlpanel.conf -------------------------------------------------------------------------------- /images/apache_php54/apache2/010-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/apache2/010-default.conf -------------------------------------------------------------------------------- /images/apache_php54/apache2/ports.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/apache2/ports.conf -------------------------------------------------------------------------------- /images/apache_php54/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/bootstrap.sh -------------------------------------------------------------------------------- /images/apache_php54/php5/apache2/newrelic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/php5/apache2/newrelic.ini -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/index.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Config/Memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Config/Memcache.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Library/Command/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Library/Command/Factory.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Library/Command/Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Library/Command/Interface.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Library/Command/Memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Library/Command/Memcache.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Library/Command/Memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Library/Command/Memcached.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Library/Command/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Library/Command/Server.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Library/Configuration/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Library/Configuration/Loader.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Library/Data/Analysis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Library/Data/Analysis.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Library/Data/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Library/Data/Error.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Library/Data/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Library/Data/Version.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Library/HTML/Components.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Library/HTML/Components.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Library/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Library/Loader.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Public/Images/635855.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Public/Images/635855.png -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Public/Images/b5463f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Public/Images/b5463f.png -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Public/Scripts/Script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Public/Scripts/Script.js -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Public/Styles/Style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/Public/Styles/Style.css -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/Temp/.version: -------------------------------------------------------------------------------- 1 | Net unreachable -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/View/Commands/Commands.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/View/Commands/Commands.tpl -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/View/Configure/Configure.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/View/Configure/Configure.tpl -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/View/Footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/View/Footer.tpl -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/View/Header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/View/Header.tpl -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/View/LiveStats/Frame.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/View/LiveStats/Frame.tpl -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/View/LiveStats/Stats.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/View/LiveStats/Stats.tpl -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/View/Stats/Error.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/View/Stats/Error.tpl -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/View/Stats/Items.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/View/Stats/Items.tpl -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/View/Stats/Slabs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/View/Stats/Slabs.tpl -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/View/Stats/Stats.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/View/Stats/Stats.tpl -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/commands.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/configure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/configure.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/index.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/memcache/stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/memcache/stats.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/ocp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/apache_php54/sites/controlpanel/ocp.php -------------------------------------------------------------------------------- /images/apache_php54/sites/controlpanel/phpinfo.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/language-specific-fieldtypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/language-specific-fieldtypes.xml -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/mapping-FoldToASCII.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/mapping-FoldToASCII.txt -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/mapping-ISOLatin1Accent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/mapping-ISOLatin1Accent.txt -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/protwords.txt -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/schema.xml -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/scripts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/scripts.conf -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/solrconfig.xml -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/stopwords.txt -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/synonyms.txt -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/VM_global_library.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/VM_global_library.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/browse.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/browse.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/cluster.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/cluster.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/clusterResults.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/clusterResults.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/doc.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/doc.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/facet_dates.vm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/facet_fields.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/facet_fields.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/facet_queries.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/facet_queries.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/facet_ranges.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/facet_ranges.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/facets.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/facets.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/footer.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/footer.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/head.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/head.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/header.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/header.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/hit.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/hit.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/jquery.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/jquery.autocomplete.css -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/jquery.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/jquery.autocomplete.js -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/layout.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/layout.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/main.css -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/query.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/query.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/querySpatial.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/querySpatial.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/suggest.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/suggest.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/velocity/tabs.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/velocity/tabs.vm -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/xslt/example.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/xslt/example.xsl -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/xslt/example_atom.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/xslt/example_atom.xsl -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/xslt/example_rss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/xslt/example_rss.xsl -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/ezp-default/conf/xslt/luke.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/ezp-default/conf/xslt/luke.xsl -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/attributes-binder-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/attributes-binder-1.2.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/carrot2-mini-3.9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/carrot2-mini-3.9.0.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/ezsystems-ezfind-solr-extension-solr-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/ezsystems-ezfind-solr-extension-solr-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/hppc-0.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/hppc-0.5.2.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/icu4j-53.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/icu4j-53.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/jackson-core-asl-1.9.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/jackson-core-asl-1.9.13.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/jackson-mapper-asl-1.9.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/jackson-mapper-asl-1.9.13.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/jsonic-1.2.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/jsonic-1.2.7.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/langdetect-1.1-20120112.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/langdetect-1.1-20120112.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/lucene-analyzers-icu-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/lucene-analyzers-icu-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/lucene-analyzers-morfologik-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/lucene-analyzers-morfologik-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/lucene-analyzers-smartcn-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/lucene-analyzers-smartcn-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/lucene-analyzers-stempel-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/lucene-analyzers-stempel-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/mahout-collections-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/mahout-collections-1.0.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/mahout-math-0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/mahout-math-0.6.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/morfologik-fsa-1.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/morfologik-fsa-1.7.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/morfologik-polish-1.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/morfologik-polish-1.7.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/morfologik-stemming-1.7.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/morfologik-stemming-1.7.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/simple-xml-2.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/simple-xml-2.7.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-analysis-extras-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-analysis-extras-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-cell-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-cell-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-clustering-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-clustering-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-core-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-core-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-dataimporthandler-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-dataimporthandler-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-dataimporthandler-extras-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-dataimporthandler-extras-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-langid-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-langid-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-map-reduce-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-map-reduce-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-morphlines-cell-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-morphlines-cell-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-morphlines-core-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-morphlines-core-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-solrj-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-solrj-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-test-framework-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-test-framework-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-uima-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-uima-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/lib/solr-velocity-4.10.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/lib/solr-velocity-4.10.1.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/solr/solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/solr/solr.xml -------------------------------------------------------------------------------- /images/solr4/solr_4.10/src/ezfind/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/src/ezfind/build.xml -------------------------------------------------------------------------------- /images/solr4/solr_4.10/start.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/start.jar -------------------------------------------------------------------------------- /images/solr4/solr_4.10/webapps/solr.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/webapps/solr.war -------------------------------------------------------------------------------- /images/solr4/solr_4.10/webapps/webapp/WEB-INF/lib/jts-1.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/solr4/solr_4.10/webapps/webapp/WEB-INF/lib/jts-1.13.jar -------------------------------------------------------------------------------- /images/varnish40/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish40/Dockerfile -------------------------------------------------------------------------------- /images/varnish40/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish40/Readme.md -------------------------------------------------------------------------------- /images/varnish40/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish40/bootstrap.sh -------------------------------------------------------------------------------- /images/varnish40/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish40/docker-compose.yml -------------------------------------------------------------------------------- /images/varnish40/etc/default/varnish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish40/etc/default/varnish -------------------------------------------------------------------------------- /images/varnish40/etc/default/varnishncsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish40/etc/default/varnishncsa -------------------------------------------------------------------------------- /images/varnish40/etc/init.d/varnishncsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish40/etc/init.d/varnishncsa -------------------------------------------------------------------------------- /images/varnish41/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish41/Dockerfile -------------------------------------------------------------------------------- /images/varnish41/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish41/Readme.md -------------------------------------------------------------------------------- /images/varnish41/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish41/bootstrap.sh -------------------------------------------------------------------------------- /images/varnish41/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish41/docker-compose.yml -------------------------------------------------------------------------------- /images/varnish41/etc/default/varnish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish41/etc/default/varnish -------------------------------------------------------------------------------- /images/varnish41/etc/default/varnishncsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish41/etc/default/varnishncsa -------------------------------------------------------------------------------- /images/varnish41/etc/init.d/varnishncsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/images/varnish41/etc/init.d/varnishncsa -------------------------------------------------------------------------------- /logs/apache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/cli/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/memcache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/mysql/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/nginx/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/solr/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /logs/varnish/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nginx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/nginx.yml -------------------------------------------------------------------------------- /stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaliop/ezdocker-stack/HEAD/stack.sh --------------------------------------------------------------------------------