mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2024-12-22 15:02:19 +00:00
Replace dots by underscores in MapDomainToStream configuration
This commit is contained in:
parent
4546f3b8fb
commit
de2ac30292
@ -119,9 +119,10 @@ web:
|
|||||||
# e.g., on http://stream.example.com:8080/, if the domain stream.example.com is mapped to "example",
|
# e.g., on http://stream.example.com:8080/, if the domain stream.example.com is mapped to "example",
|
||||||
# the stream served will be "example".
|
# the stream served will be "example".
|
||||||
# This implies that your domain will be able to serve only one stream.
|
# This implies that your domain will be able to serve only one stream.
|
||||||
|
# Dots in the domain name must be remplaced by underscores to avoid yaml issues.
|
||||||
#
|
#
|
||||||
#mapDomainToStream:
|
#mapDomainToStream:
|
||||||
# stream.example.com: example
|
# stream_example_com: example
|
||||||
|
|
||||||
# Stream player poster
|
# Stream player poster
|
||||||
# Shown when stream is loading or inactive.
|
# Shown when stream is loading or inactive.
|
||||||
|
@ -32,6 +32,7 @@ func viewerPostHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
host = realHost
|
host = realHost
|
||||||
|
host = strings.Replace(host, ".", "_", -1)
|
||||||
}
|
}
|
||||||
if streamID, ok := cfg.MapDomainToStream[host]; ok {
|
if streamID, ok := cfg.MapDomainToStream[host]; ok {
|
||||||
path = streamID
|
path = streamID
|
||||||
@ -81,6 +82,7 @@ func viewerGetHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
host = realHost
|
host = realHost
|
||||||
|
host = strings.Replace(host, ".", "_", -1)
|
||||||
}
|
}
|
||||||
if streamID, ok := cfg.MapDomainToStream[host]; ok {
|
if streamID, ok := cfg.MapDomainToStream[host]; ok {
|
||||||
if path == "about" {
|
if path == "about" {
|
||||||
|
Loading…
Reference in New Issue
Block a user