How to create a link outside of the jail, but accessable within the jail?

Solution 1:

The only method I can think of is used of a bind mount. A quick google found http://docs.1h.com/Bind_mounts

Solution 2:

Yes, as Christopher said, a bind mount will work. But I think it will work only with directories and not at file level.

If you need file links you can use hard links but it will only work within a Linux ext filesystem (don't know if other fs support it)

See Here for a description of the difference between hard and soft links.