2019-10-05 15:11:03 -05:00
|
|
|
## Configuring Satyr
|
|
|
|
|
|
|
|
### Config file
|
2019-12-21 17:23:00 -06:00
|
|
|
All changes to satyr's config will go in the config/config.yml file
|
2019-10-05 15:11:03 -05:00
|
|
|
Some values you might want to change are
|
|
|
|
```
|
2019-12-21 17:23:00 -06:00
|
|
|
satyr:
|
|
|
|
registration: true
|
2019-12-05 18:37:26 -06:00
|
|
|
# allow new users to register
|
2020-10-17 21:20:32 -05:00
|
|
|
port: 8000
|
|
|
|
# the port to serve http on
|
2019-12-05 18:37:26 -06:00
|
|
|
|
2019-12-21 17:23:00 -06:00
|
|
|
http:
|
|
|
|
hsts: true
|
2019-12-05 18:37:26 -06:00
|
|
|
# enable strict transport security
|
|
|
|
|
2020-10-17 21:20:32 -05:00
|
|
|
rtmp:
|
|
|
|
port: 1935
|
|
|
|
# change the port to serve rtmp on
|
|
|
|
cluster: false
|
|
|
|
# enable clustering for the RTMP server
|
|
|
|
# clustering is an attempt to take better advantage of multi threaded systems in spite of node.js being single-threaded
|
|
|
|
# satyr will spawn one RTMP Worker per CPU core, and round-robin incoming connections between workers
|
|
|
|
# If you turn this on, satyr will no longer be able to reliably serve RTMP streams to clients
|
|
|
|
# Your users will have to use DASH instead
|
|
|
|
|
2019-12-21 17:23:00 -06:00
|
|
|
media:
|
|
|
|
record: true
|
2019-12-05 18:37:26 -06:00
|
|
|
# allow users to record VODs
|
|
|
|
|
2019-12-21 17:23:00 -06:00
|
|
|
transcode:
|
|
|
|
adapative: true
|
2020-06-27 23:27:47 -05:00
|
|
|
# enable adaptive livestreaming when transcoding to mpeg-dash
|
|
|
|
# this will help users with poor connections, but is very cpu intensive
|
2019-12-05 18:37:26 -06:00
|
|
|
# even 3 variants will max out most budget VPSs with a single stream
|
2019-12-21 17:23:00 -06:00
|
|
|
variants: 3
|
2020-06-27 23:27:47 -05:00
|
|
|
# the number of stream variants to generate when transcoding
|
|
|
|
# satyr will generate one source quality variant, and the remaining
|
|
|
|
# variants will be of incrementally lower quality and bitrate
|
2019-12-05 18:37:26 -06:00
|
|
|
|
2020-11-08 23:12:24 -06:00
|
|
|
# having more than 4-5 variants will start giving diminishing returns on stream quality for cpu load
|
|
|
|
# if you can't afford to generate at least 3 variants, it's recommended to leave adaptive streaming off
|
|
|
|
|
2020-08-08 23:08:09 -05:00
|
|
|
inputflags: ""
|
|
|
|
# additional flags to apply to the input during transcoding
|
|
|
|
outputflags: ""
|
|
|
|
# additional flags to apply to the output during transcoding
|
|
|
|
|
2020-11-08 23:12:24 -06:00
|
|
|
hwaccel:
|
|
|
|
# See HWACCEL.md for information on configuring hardware acceleration.
|
2019-12-05 18:37:26 -06:00
|
|
|
|
2019-12-21 17:23:00 -06:00
|
|
|
crypto:
|
|
|
|
saltRounds: 12
|
2020-06-27 23:27:47 -05:00
|
|
|
# change the number of rounds of bcrypt to fit your hardware
|
|
|
|
# if you don't understand the implications, don't change this
|
2019-12-05 18:37:26 -06:00
|
|
|
|
2020-06-27 23:27:47 -05:00
|
|
|
chat:
|
2020-10-17 18:28:35 -05:00
|
|
|
# the following settings are for chat bridging bots
|
|
|
|
# users will still need to choose which channel to bridge
|
2020-06-27 23:27:47 -05:00
|
|
|
# for their chat at /profile/chat
|
|
|
|
irc:
|
|
|
|
enabled: true
|
|
|
|
server: chat.freenode.net
|
|
|
|
port: 6697
|
|
|
|
tls: true
|
|
|
|
# settings for the server the IRC bot will connect to
|
|
|
|
nickname: 'satyrchat'
|
|
|
|
sasl: true
|
|
|
|
password: 'definitelyrealpassword'
|
|
|
|
# if you want the bot to authenticate itself to reserve the username
|
|
|
|
|
|
|
|
discord:
|
|
|
|
enabled: true
|
|
|
|
token: abcdefghijklmnopqrstuvwxyz
|
|
|
|
# the access token for the bot
|
|
|
|
# note that the bot will mirror every channel matching the name the user has chosen
|
|
|
|
# even if it's connected to multiple servers
|
|
|
|
|
|
|
|
twitch:
|
|
|
|
enabled: true
|
|
|
|
username: satyrchataccount
|
|
|
|
token: asdfghjklASDFGHJKL
|
|
|
|
# access token for the twitch chat bot
|
|
|
|
# this is not the account password, you will need to generate a token here:
|
|
|
|
# https://twitchapps.com/tmi/
|
2020-10-17 18:28:35 -05:00
|
|
|
|
|
|
|
xmpp:
|
|
|
|
enabled: true
|
2020-10-17 21:20:32 -05:00
|
|
|
server: 'example.com'
|
2020-10-17 18:28:35 -05:00
|
|
|
port: 5222
|
2020-10-17 21:20:32 -05:00
|
|
|
jid: 'exampleBot@example.com'
|
2020-10-17 18:28:35 -05:00
|
|
|
password: 'abcde'
|
|
|
|
# connection settings for the bot
|
2020-10-18 02:16:54 -05:00
|
|
|
nickname: 'SatyrChat'
|
2020-10-17 18:28:35 -05:00
|
|
|
# the nickname the bot will join MUCs with
|
|
|
|
|
|
|
|
# note that for the best experience you should set the default number of history messages to 0 for the MUC
|
|
|
|
# The bot will attempt to request 0 history messages anyway, and will also attempt to ignore any history messages it receives
|
|
|
|
# but both of these things are unreliable
|
2019-10-05 15:11:03 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
### Web Frontend
|
|
|
|
If you want to customize the front-end css, place a file with any changes you wish to make at site/local.css
|
2019-12-05 18:37:26 -06:00
|
|
|
You can change the logo by replacing site/logo.svg.
|
2020-06-27 23:27:47 -05:00
|
|
|
You should also consider editing templates/about.html and templates/tos.html
|