As siren documentation explains, the file located in tomcat/conf/Catalina/localhost
must set the path of the war file. I have tried with the absolute path, but I wanted to used a relative path, because it is not only me who will use siren.
siren.xml
<Context docBase="/../../../webapps/siren" debug="0" crossContext="true" >
<Environment name="siren/home" type="java.lang.String" value="/../../../webapps/siren" override="true" />
</Context>
But running my tomcat I get this error:
GRAVE: Error running static resources
java.lang.IllegalArgumentException: Document /webapps/siren does not exist or is not a readable directory
How could I set up this configuration??
Thanks in advance