- Description
- Setup - The basics of getting started with nimblestreamer
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
This module installs Nimble Streamer on CentOS and sets up the configuration file.
Further configuration is done by using the WMS Panel.
Add the module to node configuration:
node server {
class { '::nimblestreamer':
port => 80,
}
}
Basic configuration just makes sure that Nimble is installed and running.
If you want to register the server with the WMS Panel you have to run the following command manually on the server:
sudo /usr/bin/nimble_regutil -u [email protected] -p mypassword
The configuration file /etc/nimble/nimble.conf
is now updated with a panel_uuid
and a panel_password
. Copy these values back to your node configuration:
node server {
class { '::nimblestreamer':
panel_uuid => 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
panel_password => 'hash',
}
}
All mandatory configuration are supported by this module as defined on this page: http://blog.wmspanel.com/p/nimble-streamer-configuration.html
Only CentOS 7 is tested currently.
You are free to fork this repository and support to additional OS or configuration options.