Hi,
we have LimeSurvey in the DMZ. The machine has one network interface but can be accessed in two ways:
- from internal network as '
srv001.local.dom
'
- from the internet through an application firewall. the firewall is reachable at
www.company.com
. it terminates the SSL connection and forwards the plain request to LimeSurvey
The idea is to have admin access (only) through the internal URL and survey access through the public URL.
This seems to work but there's a problem with emails. when we generate emails from LimeSurvey with links to a survey, then the link points to
srv001.local.dom/limesurvey/
instead of
www.company.com/limesurvey/
.
I already tried to set
'request' => array(
'hostInfo' => '
www.company.com
',
),
and
$config = '
www.company.com/
';
but neither seems to do what we want.
So, is it possible to separate admin and public access AND create emails with public links?
Kind Regards
Boomer