Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Auth is disabled by default in the Jetty one-click version of Fedora.

Step-by-Step Configuration

...

Tomcat

Add an entry to your server.xml that instructs the webapp to load a different web.xml. Assuming Fedora is deployed as the fcrepo webapp, the entry should look like this:

Code Block
languagexml
titleserver.xml
<Server>
  ...
  <Service>
    ...
    <Engine>
      ...
      <Host>
        <Context docBase="fcrepo" altDDName="webapps/fcrepo/WEB-INF/web-no-auth.xml" />
      </Host>
    </Engine>
  </Service>
</Server>

...