openvidu/openvidu-server/docker/openvidu-proxy/default_nginx_conf/ce/default.conf

15 lines
259 B
Plaintext
Raw Normal View History

server {
listen 80;
server_name {domain_name};
2020-04-09 16:33:26 +02:00
# Redirect to https
location / {
return 301 https://$host$request_uri;
}
2020-04-09 16:33:26 +02:00
# letsencrypt
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
2020-04-09 16:33:26 +02:00
}