|
@@ -93,6 +93,7 @@ Variable | Description | Example
|
|
`HTTP_PORT` | Exposed port for HTTP traffic | 8000
|
|
`HTTP_PORT` | Exposed port for HTTP traffic | 8000
|
|
`HTTPS_PORT` | Exposed port for HTTPS traffic | 8443
|
|
`HTTPS_PORT` | Exposed port for HTTPS traffic | 8443
|
|
`DOCKER_HOST_ADDRESS` | IP address of the Docker host, needed for LAN environments | 192.168.1.1
|
|
`DOCKER_HOST_ADDRESS` | IP address of the Docker host, needed for LAN environments | 192.168.1.1
|
|
|
|
+`PUBLIC_URL` | Public url for the web service | https://meet.example.com
|
|
|
|
|
|
**NOTE**: The mobile apps won't work with self-signed certificates (the default)
|
|
**NOTE**: The mobile apps won't work with self-signed certificates (the default)
|
|
see below for instructions on how to obtain a proper certificate with Let's Encrypt.
|
|
see below for instructions on how to obtain a proper certificate with Let's Encrypt.
|
|
@@ -214,6 +215,17 @@ Variable | Description | Example
|
|
--- | --- | ---
|
|
--- | --- | ---
|
|
`ETHERPAD_URL_BASE` | Set etherpad-lite URL | http://etherpad.meet.jitsi:9001
|
|
`ETHERPAD_URL_BASE` | Set etherpad-lite URL | http://etherpad.meet.jitsi:9001
|
|
|
|
|
|
|
|
+### Transcription configuration
|
|
|
|
+
|
|
|
|
+If you want to enable the Transcribing function, these options are required:
|
|
|
|
+
|
|
|
|
+Variable | Description | Example
|
|
|
|
+--- | --- | ---
|
|
|
|
+`ENABLE_TRANSCRIPTIONS` | Enable Jigasi transcription in a conference | 1
|
|
|
|
+`GOOGLE_APPLICATION_CREDENTIALS` | Credentials for connect to Cloud Google API from Jigasi. Path located inside the container | /config/key.json
|
|
|
|
+
|
|
|
|
+For setting `GOOGLE_APPLICATION_CREDENTIALS` please read https://cloud.google.com/text-to-speech/docs/quickstart-protocol section "Before you begin" from 1 to 5 paragraph.
|
|
|
|
+
|
|
### Advanced configuration
|
|
### Advanced configuration
|
|
|
|
|
|
These configuration options are already set and generally don't need to be changed.
|
|
These configuration options are already set and generally don't need to be changed.
|
|
@@ -250,6 +262,9 @@ Variable | Description | Default value
|
|
`JIGASI_SIP_KEEP_ALIVE_METHOD` | Keepalive method | OPTIONS
|
|
`JIGASI_SIP_KEEP_ALIVE_METHOD` | Keepalive method | OPTIONS
|
|
`JIGASI_HEALTH_CHECK_SIP_URI` | Health-check extension. Jigasi will call it for healthcheck | keepalive
|
|
`JIGASI_HEALTH_CHECK_SIP_URI` | Health-check extension. Jigasi will call it for healthcheck | keepalive
|
|
`JIGASI_HEALTH_CHECK_INTERVAL` | Interval of healthcheck in milliseconds | 300000
|
|
`JIGASI_HEALTH_CHECK_INTERVAL` | Interval of healthcheck in milliseconds | 300000
|
|
|
|
+`JIGASI_TRANSCRIBER_RECORD_AUDIO` | Jigasi will recordord an audio when transcriber is on | true
|
|
|
|
+`JIGASI_TRANSCRIBER_SEND_TXT` | Jigasi will send transcribed text to the chat when transcriber is on | true
|
|
|
|
+`JIGASI_TRANSCRIBER_ADVERTISE_URL` | Jigasi post to the chat an url with transcription file | true
|
|
`DISABLE_HTTPS` | Disable HTTPS, this can be useful if TLS connections are going to be handled outside of this setup | 1
|
|
`DISABLE_HTTPS` | Disable HTTPS, this can be useful if TLS connections are going to be handled outside of this setup | 1
|
|
`ENABLE_HTTP_REDIRECT` | Redirects HTTP traffic to HTTPS | 1
|
|
`ENABLE_HTTP_REDIRECT` | Redirects HTTP traffic to HTTPS | 1
|
|
|
|
|