我正在使用Nginx安装rtmp服务器,并尝试使用Puppet进行部署。我已经从源代码https://github.com/arut/nginx-rtmp-module编译了Nginx,并在Puppet https://forge.puppet.com/puppet/nginx中配置了基本的Nginx类。
`class { 'nginx ':
confd_purge => true
server_purge => true,
daemon_user => 'www',
conf_dir => '/usr/local/nginx/conf/',
package_name => 'nginx',
}
`
我想知道我需要添加哪些参数来配置nginx.conf文件以将https://github.com/arut/nginx-rtmp-module添加到nginx.conf中。