Hi,
I have a device which sends a GET request in the format:
dev.php?rd=1234567|i4gK2M0GL3M1SCFu00hOuw0Riu2f00j0000N801EKe02
HTTP/1.1\r\nHost: 111.222.33.44\r\n\r\n
The problem I face (I think) is that a pipe is not an allowed character?
Hence I get a 501 error...or is it that the device isnt sending a proper
header?
How can I tell pound to turn off its checks for this url group (the port
8001 group)
Thanks
Dean.
Here is my config file:
Daemon 1
LogLevel 0
Alive 5
ListenHTTPS
Address 192.168.100.4
Port 443
Cert "/usr/local/etc/pound.pem"
Err500 "/usr/local/etc/error.html"
Err501 "/usr/local/etc/error.html"
Err503 "/usr/local/etc/error.html"
Err414 "/usr/local/etc/error.html"
Ciphers "ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL"
End
ListenHTTP
Address 192.168.100.4
Port 80
Err500 "/usr/local/etc/error.html"
Err501 "/usr/local/etc/error.html"
Err503 "/usr/local/etc/error.html"
Err414 "/usr/local/etc/error.html"
End
ListenHTTP
Address 192.168.100.4
Port 8001
Service
BackEnd
Address 192.168.100.5
Port 8001
End
#BackEnd
# Address 192.168.100.6
# Port 8001
#End
#BackEnd
# Address 192.168.100.7
# Port 8001
#End
End
Err500 "/usr/local/etc/error.html"
Err501 "/usr/local/etc/error.html"
Err503 "/usr/local/etc/error.html"
Err414 "/usr/local/etc/error.html"
End
# Catch all servers for my domains
Service
HeadRequire "Host:.*my.com.*"
BackEnd
Address 192.168.100.5
Port 80
End
BackEnd
Address 192.168.100.6
Port 80
End
BackEnd
Address 192.168.100.7
Port 80
End
End
|