Browse Source

Added nginx config

Signed-off-by: Blagovest Petrov <blagovest@petrovs.info>
master
Blagovest Petrov 3 years ago
parent
commit
55f8df3cd9
  1. 24
      generator/gen_source.go
  2. 37
      generator/nginx.conf
  3. 25
      index.html

24
generator/gen_source.go

@ -0,0 +1,24 @@
package main
import (
"os"
"text/template"
)
type Todo struct {
Name string
Url string
}
func main() {
td := Todo{"Test templates", "Let's test a template to see the magic."}
t, err := template.New("todos").Parse("A radio named \"{{ .Name}}\" with url: \"{{ .Url}}\"")
if err != nil {
panic(err)
}
err = t.Execute(os.Stdout, td)
if err != nil {
panic(err)
}
}

37
generator/nginx.conf

@ -0,0 +1,37 @@
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
try_files $uri $uri/ =404;
}
location /bnr/horizont {
proxy_pass http://stream.bnr.bg:8011/horizont.aac;
proxy_set_header Access-Control-Allow-Origin *;
proxy_buffering off;
tcp_nodelay on;
}
location /bnr/HristoBotev {
proxy_pass http://stream.bnr.bg:8012/hristo-botev.aac;
proxy_set_header Access-Control-Allow-Origin *;
proxy_buffering off;
tcp_nodelay on;
}
location /bnr/RadioSofia {
proxy_pass https://edge17.cdn.bg:20320/fls/Sofia.stream/media_w657067993_58220.aac;
proxy_set_header Access-Control-Allow-Origin *;
proxy_buffering off;
tcp_nodelay on;
}
}

25
index.html

@ -32,20 +32,27 @@
initialTracks: [
{
metaData: {
artist: "horizont",
title: "bnr"
artist: "Хоризонт",
title: "БНР"
},
url: "http://stream-bg-01.radiotangra.com:8000/Tangra-high",
duration: 9.22
url: "bnr/horizont",
duration: 999
},
{
metaData: {
artist: "Some Artist",
title: "Title of Second Track"
artist: "Христо Ботев",
title: "БНР"
},
url: "https://cdn.jsdelivr.net/gh/captbaritone/webamp@43434d82cfe0e37286dbbe0666072dc3190a83bc/mp3/llama-2.91.mp3",
duration: 5.322286
}
url: "bnr/HristoBotev",
},
{
metaData: {
artist: "Радио София",
title: "БНР"
},
url: "bnr/RadioSofia",
},
],
});

Loading…
Cancel
Save