Hi,
Are you accessing Liferay behind a front-end (like apache or whatever)? If this is true, and this should be the same for Markus, you probably want o check the following properties:
1
2##
3## Redirect
4##
5
6 #
7 # Set this property to "ip" or "domain" for the redirect security method. If
8 # set to "domain", the portal will only redirect users to domains listed in
9 # the property "redirect.url.domain.allowed". If set to "ip", the portal
10 # will only redirect to domains whose IP address resolve to an IP address
11 # listed in the property "redirect.url.ip.allowed".
12 #
13 #redirect.url.security.mode=domain
14 redirect.url.security.mode=ip
15
16 #
17 # Input a list of comma delimited domains which the portal is allowed to
18 # redirect to. Input a blank list to allow any domain.
19 #
20 redirect.url.domains.allowed=
21
22 #
23 # Input a list of comma delimited IPs which the portal is allowed to
24 # redirect to. Input a blank list to allow any IP. SERVER_IP will be
25 # replaced with the IP of the host server.
26 #
27 redirect.url.ips.allowed=127.0.0.1,SERVER_IP
Please note that if you want to keep redirect.security.mode=ip you have to add the IP of your front end in the redirect.url.ips.allowed list.
Regards,
Riccardo
Please sign in to flag this as inappropriate.