mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
d7c3991b59
* Render and sanitize chat messages server-side. Closes #235 * Render content.md server-side and return it in the client config * Remove showdown from web project * Update api spec * Move example user content file
14 lines
273 B
Go
14 lines
273 B
Go
package config
|
|
|
|
import "path/filepath"
|
|
|
|
const (
|
|
WebRoot = "webroot"
|
|
PrivateHLSStoragePath = "hls"
|
|
GeoIPDatabasePath = "data/GeoLite2-City.mmdb"
|
|
ExtraInfoFile = "data/content.md"
|
|
)
|
|
|
|
var (
|
|
PublicHLSStoragePath = filepath.Join(WebRoot, "hls")
|
|
)
|