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

34 lines
580 B
Plaintext
Raw Normal View History

2020-11-01 21:03:12 +01:00
{app_upstream}
upstream openviduserver {
server localhost:5443;
}
server {
2020-04-28 15:53:56 +02:00
listen {https_port} ssl;
server_name {domain_name};
2020-11-01 21:03:12 +01:00
{ssl_config}
2020-11-01 21:03:12 +01:00
{proxy_config}
2020-11-01 21:03:12 +01:00
{app_config}
2020-11-01 21:03:12 +01:00
########################
# OpenVidu Locations #
########################
{common_api_ce}
2020-04-09 16:33:26 +02:00
2020-11-01 21:03:12 +01:00
{deprecated_api_ce}
2020-04-20 18:45:56 +02:00
2020-11-01 21:03:12 +01:00
{new_api_ce}
#################################
# LetsEncrypt #
#################################
location /.well-known/acme-challenge {
root /var/www/certbot;
try_files $uri $uri/ =404;
}
2020-04-09 16:33:26 +02:00
}