3 changed files with 77 additions and 9 deletions
@ -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) |
|||
} |
|||
} |
@ -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; |
|||
} |
|||
|
|||
} |
Loading…
Reference in new issue