I have apache 2.2.22 server installed on ubuntu linux.
I created a virtual host on port 443 and I want all telnet indications to that port to be listed in the access log.
so for example if I telnet to that port on port 443 and I don't write anything, it disconnects me after a few seconds and then it shows an indication in the access log.
192.168.1.140 - - [15/Jul/2013:11:40:19 +0300] "-" 408 0 "-" "-"
but if i telnet port 443 and type some garbage text and it disconnects me I see no indication in the access log that I tried to connect.
this is my access log directive in apache configuration file:
CustomLog ${APACHE_LOG_DIR}/apache-ssl-access.log combined
how can I fix it that even when I telnet to that port and type garbage I will still see an indication that someone tried to connect ?
I have reqtimeout module enabled.
thank you.