Versioner sammenlignet

Nøgle

  • Linjen blev tilføjet.
  • Denne linje blev fjernet.
  • Formatering blev ændret.

...

If the Tomcat needs to travel through symbolic links on the filesystem, add the allowLinking="true" to the context:

Tomcat 7.X - This is in server.xml

Kodeblok
<Context path="" docBase="../confluence" debug="0" reloadable="false" useHttpOnly="true" allowLinking="true">

Tomcat 8.X - This is in context.xml

Kodeblok
<Context>
  <Resources allowLinking="true" />
</Context>

 

If the Confluence instance need to run below root /, change the path= parameter:

...