Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1 KB

readme.md

File metadata and controls

51 lines (38 loc) · 1 KB

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'
}