Question
I need to configure FMS server so that it will listen to only RTMP requests and disable other service.
Answer
If you want to disable HDS/HLS, remove/comment these lines in the httpd.conf file:
LoadModule f4fhttp_module modules/mod_f4fhttp.so => For disabling HDS-Live
LoadModule hlshttp_module modules/mod_hlshttp.so => For disabling HDS-Vod
LoadModule jithttp_module modules/mod_jithttp.so => For disabling HLS
Put # in front like this
#LoadModule f4fhttp_module modules/mod_f4fhttp.so
Or you may set these values to "false" in apache->conf->httpd.conf
HttpStreamingEnabled
HLSHttpStreamingEnabled
HLSHttpStreamingEnabled
HttpStreamingJITPEnabled
Restart the server.
This document was generated from the following discussion: Allow FMS to accept only RTMP requests