KrisBuytaert / puppet-wowza

Wowza Puppet Module

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

puppet-wowza

This is the puppet-wowza module used for installing and configuring wowza streaming server.

Use

Install Wowza streaming server

$wowzakey is your Wowza streaming server license key At the moment only debian works, and you have to have the wowza streaming server deb installer in an internal repo.


class { 'wowza':
  wowzakey => $wowzakey;
}

Add Wowza application

This adds a wowza application, defaults all work for a standard live streaming application. You can also use this to define a video on demand application by using the default type.

Live :

wowza::application { 'live':
  apptype    => 'Live',
  streamtype => 'live',
  rtmp_protect => true,
}

VOD :

wowza::application {'vod':
  apptype      => 'VOD',
  streamtype   => 'default',
  storagedir   => '/var/content'
}

Livestream Edge

wowza::application {'live-edge':
  apptype    => 'LiveEdge',
  streamtype => 'liverepeater-edge',
  origin_url => 'wowz://[serverip]:1935/origin'
}

About

Wowza Puppet Module


Languages

Language:HTML 52.4%Language:Puppet 32.3%Language:Shell 13.2%Language:Ruby 2.2%