mirror of
https://git.waldn.net/git/knotteye/satyr.git
synced 2025-09-07 00:39:12 +00:00
Big Refactor
Stop using config and toml as dependencies Stop passing around config variables through function calls Add config.ts and pull the values you need directly in the files Remove irc.js for incoming new IRC solution Rename controller to index because that was stupid Minor git bullshit with the config folder Change to yaml as a config format
This commit is contained in:
0
config/.gitkeep
Normal file
0
config/.gitkeep
Normal file
@ -1,58 +0,0 @@
|
||||
#DO NOT EDIT THIS FILE
|
||||
#ALL CHANGES SHOULD GO IN LOCAL.TOML
|
||||
[bcrypt]
|
||||
saltRounds = 12
|
||||
|
||||
[satyr]
|
||||
name = ''
|
||||
domain = ''
|
||||
registration = false
|
||||
restrictedNames = ['live']
|
||||
rootredirect = '/users/live'
|
||||
|
||||
[ircd]
|
||||
enable = false
|
||||
port = 6667
|
||||
sid = ''
|
||||
server = ''
|
||||
pass = ''
|
||||
vhost = 'web.satyr.net'
|
||||
|
||||
[database]
|
||||
host = 'localhost'
|
||||
user = 'satyr'
|
||||
password = ''
|
||||
database = 'satyr_db'
|
||||
connectionLimit = '50'
|
||||
connectionTimeout = '1000'
|
||||
insecureAuth = false
|
||||
debug = false
|
||||
|
||||
[server]
|
||||
logs = 0
|
||||
api = false
|
||||
api_user = false
|
||||
api_pass = false
|
||||
|
||||
[server.rtmp]
|
||||
port = 1935
|
||||
chunk_size = 6000
|
||||
gop_cache = true
|
||||
ping = 30
|
||||
ping_timeout = 60
|
||||
|
||||
[server.http]
|
||||
hsts = false
|
||||
directory = './site'
|
||||
port = 8000
|
||||
|
||||
[media]
|
||||
record = false
|
||||
publicEndpoint = 'live'
|
||||
privateEndpoint = 'stream'
|
||||
ffmpeg = ''
|
||||
|
||||
[transcode]
|
||||
adapative = false
|
||||
variants = 3
|
||||
format = 'dash'
|
Reference in New Issue
Block a user