16 lines
488 B
Plaintext
16 lines
488 B
Plaintext
server {
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
server_name soundbase.radiodemo.oma-radio.fr;
|
|
ssl_certificate /data/dnscerts.jean-cloud.org/certs/live/soundbase.radiodemo.oma-radio.fr/fullchain.pem;
|
|
ssl_certificate_key /data/dnscerts.jean-cloud.org/certs/live/soundbase.radiodemo.oma-radio.fr/privkey.pem;
|
|
|
|
|
|
|
|
location / {
|
|
proxy_pass http://10.99.99.7/;
|
|
proxy_set_header Host soundbase.radiodemo.oma-radio.fr;
|
|
}
|
|
}
|
|
|