Quote:
Originally Posted by ashesofasker
Hi guys.
Hope some of you can give me some pointers on whether it is possible and if it is - how to do it.
I want to use Calibre a little alternative as a poster viewing system for a small conference. People submit abstracts and some end up during posters on these.
The format is typically PDF and I need a system where I can arrange these and where people can access them from their personal devices on http://conferencedomain.org/calibre
It's no problem to run this internally but the domain thing I can't figure out.
Any experience on this? Help is much appreciated. 
|
You'd need to run the calibre server somewhere that the primary web server (for conferencedomain.org) can reach it, and then set up the primary web server to do a reverse proxy on requests under the /calibre/ path.
There are significant security implications here: Did you get the configuration correct without exposing other internal information? Is Calibre's content server safe to expose in this manner? Do you need to lock it down to conference registrants only, or should it be open to the world?
You should definitely get someone who knows what they're doing to set it up.
With Apache, you're probably looking at
mod_proxy and/or
mod_rewrite for this. nginx also has
reverse proxy support, as do
IIS and most other major web servers.