mirror of https://github.com/OpenVidu/openvidu.git
http_port and https_port changed
parent
27ef88f70c
commit
2976ecc443
|
@ -30,14 +30,14 @@ LETSENCRYPT_EMAIL=user@example.com
|
|||
# If you want to change the ports on which openvidu listens, uncomment the following lines
|
||||
|
||||
# Allows any request to http://IP:OPENVIDU_HTTP_PORT/ to be automatically
|
||||
# redirected to https://IP:OPENVIDU_HTTPS_PORT/ .
|
||||
# redirected to https://IP:OPENVIDU_HTTPS_PORT/.
|
||||
# WARNING: the default port 80 cannot be changed during the first boot
|
||||
# if you have chosen to deploy with the option CERTIFICATE_TYPE=letsencrypt
|
||||
# OPENVIDU_HTTP_PORT=80
|
||||
# HTTP_PORT=80
|
||||
|
||||
# Changes the port of all services exposed by OpenVidu.
|
||||
# SDKs, REST clients and browsers will have to connect to this port
|
||||
# OPENVIDU_HTTPS_PORT=443
|
||||
# HTTPS_PORT=443
|
||||
|
||||
# Whether to enable recording module or not
|
||||
OPENVIDU_RECORDING=false
|
||||
|
|
|
@ -10,5 +10,5 @@ services:
|
|||
ports:
|
||||
- "5442:80"
|
||||
environment:
|
||||
- OPENVIDU_URL=https://${OPENVIDU_DOMAIN_OR_PUBLIC_IP}:${OPENVIDU_HTTPS_PORT:-443}
|
||||
- OPENVIDU_URL=https://${OPENVIDU_DOMAIN_OR_PUBLIC_IP}:${HTTPS_PORT:-443}
|
||||
- OPENVIDU_SECRET=${OPENVIDU_SECRET}
|
||||
|
|
|
@ -78,7 +78,7 @@ services:
|
|||
- DOMAIN_OR_PUBLIC_IP=${OPENVIDU_DOMAIN_OR_PUBLIC_IP}
|
||||
- CERTIFICATE_TYPE=${CERTIFICATE_TYPE}
|
||||
- LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
|
||||
- PROXY_HTTP_PORT=${OPENVIDU_HTTP_PORT:-}
|
||||
- PROXY_HTTPS_PORT=${OPENVIDU_HTTPS_PORT:-}
|
||||
- PROXY_HTTP_PORT=${HTTP_PORT:-}
|
||||
- PROXY_HTTPS_PORT=${HTTPS_PORT:-}
|
||||
- PROXY_MODE=CE
|
||||
- WITH_DEMOS=true
|
||||
|
|
Loading…
Reference in New Issue