Hi,
For my current project i am expected to build a search function for an archive
with the help of Solr.
a part of the structure of this archive is:
/data/.../...
file/
some.file
/html/../../
file (symlink to /data/.../.../file/)
index.html
the search should index all the files within the html directory including the
symlinked ones.
To my understanding symlinks are not automatically followed, so i searched
online and found a suggestion to add
```
<str name="enable.symlinks">true</str>
```
to the config tag within the solfconfig.xml file. I did so but did not manage
to get the indexing of symlinks working.
What is the best option to enable this symlink indexing?
Kind regards,
Hendrik