Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Enable Fedora Resource Index by fixing logging jar conflict. #30

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 17 additions & 1 deletion README.md
Expand Up @@ -41,7 +41,23 @@ For use within your Hydra application's Rails directory.

See [jettywrapper](https://github.com/projecthydra/jettywrapper) for more information regarding configuration and usage.
Port numbers and other java options maybe configured via the gem.


### Fedora Resource Index

This installation of Fedora has the Resource Index enabled. If you wish to disable the Resource Index for your development or test copies of Fedora, you can do so by modifying, respectfully, fedora/default/server/config/fedora.fcfg or fedora/test/server/config/fedora.fcfg.

Change this:

<module role="org.fcrepo.server.resourceIndex.ResourceIndex" class="org.fcrepo.server.resourceIndex.ResourceIndexModule">
<comment>Supports the ResourceIndex.</comment>
<param name="level" value="1">

To this:

<module role="org.fcrepo.server.resourceIndex.ResourceIndex" class="org.fcrepo.server.resourceIndex.ResourceIndexModule">
<comment>Supports the ResourceIndex.</comment>
<param name="level" value="0">

### Interaction

When jetty is finished initializing itself, Solr is available at
Expand Down