I have been trying out SSL session reuse on Android webview. We noticed that the ssl session is being re-used if the consecutive requests happen within ~5 seconds. In the server(nginx) we have set the ssl_session_timeout 10m
meaning, 10 minutes and keep-alive is for 30 seconds.
Seems like the Android webview control is destroying session-id after 5 seconds.
How can we reuse the ssl session for at least 30 seconds?