HTTPS_PORT added

This commit is contained in:
OscarSotoSanchez 2020-04-29 11:25:42 +02:00
parent 5aa467ae5e
commit 1b59339a94
2 changed files with 12 additions and 5 deletions

View File

@ -9,3 +9,10 @@
# OpenVidu SECRET used for apps to connect to OpenVidu server
# OPENVIDU_SECRET=
# Proxy configuration
# If you want to change the ports on which openvidu listens, uncomment the following lines
# Changes the port of all services exposed by OpenVidu.
# SDKs, REST clients and browsers will have to connect to this port
# HTTPS_PORT=443

View File

@ -6,35 +6,35 @@ services:
image: openvidu/openvidu-basic-videoconference:2.13.0
restart: on-failure
environment:
- OPENVIDU_URL=https://${OPENVIDU_DOMAIN_OR_PUBLIC_IP:-}
- OPENVIDU_URL=https://${OPENVIDU_DOMAIN_OR_PUBLIC_IP:-}:${HTTPS_PORT:-443}
- OPENVIDU_SECRET=${OPENVIDU_SECRET:-}
openvidu-basic-webinar:
image: openvidu/openvidu-basic-webinar:2.13.0
restart: on-failure
environment:
- OPENVIDU_URL=https://${OPENVIDU_DOMAIN_OR_PUBLIC_IP:-}
- OPENVIDU_URL=https://${OPENVIDU_DOMAIN_OR_PUBLIC_IP:-}:${HTTPS_PORT:-443}
- OPENVIDU_SECRET=${OPENVIDU_SECRET:-}
openvidu-classroom:
image: openvidu/openvidu-classroom:2.13.0
restart: on-failure
environment:
- OPENVIDU_URL=https://${OPENVIDU_DOMAIN_OR_PUBLIC_IP:-}
- OPENVIDU_URL=https://${OPENVIDU_DOMAIN_OR_PUBLIC_IP:-}:${HTTPS_PORT:-443}
- OPENVIDU_SECRET=${OPENVIDU_SECRET:-}
openvidu-getaroom:
image: openvidu/openvidu-getaroom:2.13.0
restart: on-failure
environment:
- OPENVIDU_URL=https://${OPENVIDU_DOMAIN_OR_PUBLIC_IP:-}
- OPENVIDU_URL=https://${OPENVIDU_DOMAIN_OR_PUBLIC_IP:-}:${HTTPS_PORT:-443}
- OPENVIDU_SECRET=${OPENVIDU_SECRET:-}
openvidu-call:
image: openvidu/openvidu-call:2.12.0-demos
restart: on-failure
environment:
- OPENVIDU_URL=https://${OPENVIDU_DOMAIN_OR_PUBLIC_IP:-}
- OPENVIDU_URL=https://${OPENVIDU_DOMAIN_OR_PUBLIC_IP:-}:${HTTPS_PORT:-443}
- OPENVIDU_SECRET=${OPENVIDU_SECRET:-}
demos-page: