jean-cloud-services/services/oma-radio.fr/nginx_server.conf

14 lines
307 B
Plaintext
Raw Normal View History

2023-04-24 10:11:09 +00:00
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
2023-09-29 07:51:22 +00:00
ssl_certificate $JC_CERT/fullchain.pem;
ssl_certificate_key $JC_CERT/privkey.pem;
2023-04-24 10:11:09 +00:00
server_name oma-radio.fr www.oma-radio.fr;
root /data/oma-radio.fr;
location / {
index index.html;
try_files $uri $uri/ =404;
}
}