Quote:
Originally Posted by plsureking
 unhelpful reply alert
  i hate it when that happens. 
ok, now helpful reply:
yum uninstall httpd and httpd-devel and do it again.
you should have a proccess written down on how to recover/restore a system before you start playing with it.
apache streaming is easy.
Code:
yum -y install httpd-devel
yum -y install httpd mod_ssl
cd /usr/src
wget http://h264.code-shop.com/download/apache_mod_h264_streaming-2.2.7.tar.gz
tar -zxvf apache_mod_h264_streaming-2.2.7.tar.gz
cd mod_h264_streaming-2.2.7
./configure
make
sudo make install
then add this to the bottom of httpd.conf
Code:
LoadModule h264_streaming_module /usr/lib/httpd/modules/mod_h264_streaming.so
AddHandler h264-streaming.extensions .mp4
slightly different for 64-bit system..
#
|
thanks., will it remove the current httpd.conf files ?
my current conf file has
LoadModule h264_streaming_module /usr/lib/httpd/modules/mod_h264_streaming.so
AddHandler h264-streaming.extensions .mp4