hello!
i have the following problem in my pound configuration. i want to use pound
in https mode.
so everything works fine if i use the trailing slash.
an example:
https://myserver/test/ -> works
https://myserver/test -> works not will
be redirected to
http://myserver/test/
so i have deactivated the http listener.
if i try again with the same requests i got an connection refuses.
i append an wget output so you can see that i go redirected to port 80. (i
deleted my server names)
wget https://myserver/portal
--14:13:36-- https://myserver/portal
=> `portal'
Resolving myserver... 10.200.30.5
Connecting to myserver|10.200.30.5|:443... connected.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: http://myserver/portal/
[following]
--14:13:36-- http://myserver/portal/
=> `index.html'
Connecting to myserver|10.200.30.5|:80... failed: Connection refused.
Resolving myserver... 10.200.30.5
Connecting to myserver|10.200.30.5|:80... failed: Connection refused.
if i use the ip adress in my request everything works fine:
wget --no-check-certificate https://10.200.30.5/portal
--14:17:32-- https://10.200.30.5/portal
=> `portal'
Connecting to 10.200.30.5:443... connected.
WARNING: certificate common name `myserver' doesn't match requested host
name `10.200.30.5'.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: https://10.200.30.5/portal/
[following]
--14:17:32-- https://10.200.30.5/portal/
=> `index.html'
Connecting to 10.200.30.5:443... connected.
WARNING: certificate common name `myserver' doesn't match requested host
name `10.200.30.5'.
HTTP request sent, awaiting response... 200 OK
Length: 81 [text/html]
100%[=================================================================================================================>]
81 --.--K/s
14:17:32 (1.58 MB/s) - `index.html' saved [81/81]
any ideas? thant you for your help!
best regards mario
|