mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-27 22:11:12 +00:00
Update .env
update env
This commit is contained in:
parent
94c19f2d78
commit
9478e8c4e9
|
@ -1,50 +1,44 @@
|
|||
# Production env file; works natively
|
||||
# No need for adjustments
|
||||
# -------
|
||||
# Enable self-signed certs (app/ssl)
|
||||
|
||||
# Enable self-signed certs (app/ssl)
|
||||
HTTPS=false # true or false
|
||||
|
||||
HTTPS=false
|
||||
# Domain
|
||||
|
||||
# Domain
|
||||
HOST=localhost
|
||||
|
||||
# enable the following to protect mirotalk with an additional login screen
|
||||
HOST_PROTECTED=false
|
||||
HOST_PROTECTED=false # true or false
|
||||
HOST_USERNAME=username
|
||||
HOST_PASSWORD=password
|
||||
|
||||
# Signaling Server listen port
|
||||
# Signaling Server listen port
|
||||
|
||||
PORT=3000
|
||||
|
||||
# Ngrok
|
||||
# 1. Goto https://ngrok.com
|
||||
# Ngrok
|
||||
# 1. Goto https://ngrok.com
|
||||
# 2. Get started for free
|
||||
# 3. Copy YourNgrokAuthToken: https://dashboard.ngrok.com/get-started/your-authtoken
|
||||
# 3. Copy YourNgrokAuthToken: https://dashboard.ngrok.com/get-started/your-authtoken
|
||||
|
||||
NGROK_ENABLED=false # or true
|
||||
NGROK_AUTH_TOKEN=YourNgrokAuthToken
|
||||
NGROK_ENABLED=false # true or false
|
||||
NGROK_AUTH_TOKEN=YourNgrokAuthToken
|
||||
|
||||
# Stun
|
||||
# Check: https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/
|
||||
# Stun
|
||||
# About: https://bloggeek.me/webrtcglossary/stun/
|
||||
# Check: https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/
|
||||
|
||||
STUN=stun:stun.l.google.com:19302
|
||||
STUN_SERVER_ENABLED=true # true or false
|
||||
STUN_SERVER_URL=stun:stun.l.google.com:19302
|
||||
|
||||
# Turn
|
||||
# Recommended: https://github.com/coturn/coturn
|
||||
# Check: https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/
|
||||
# About: https://bloggeek.me/webrtcglossary/turn/
|
||||
# Recommended: https://github.com/coturn/coturn
|
||||
# Installation: https://github.com/miroslavpejic85/mirotalk/blob/master/docs/coturn.md
|
||||
# Free one: https://www.metered.ca/tools/openrelay/ (Please, create your own account)
|
||||
# Check: https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/
|
||||
|
||||
TURN_ENABLED=false # or true
|
||||
TURN_URLS=turn:YourTurnServer
|
||||
TURN_USERNAME=YourTurnUsername
|
||||
TURN_PASSWORD=YourTurnPassword
|
||||
|
||||
# API
|
||||
# The response will give you a entrypoint / Room URL for your meeting.
|
||||
# curl -X POST "http://localhost:3000/api/v1/meeting" -H "authorization: mirotalk_default_secret" -H "Content-Type: application/json"
|
||||
|
||||
API_KEY_SECRET=8jBEI8KVKj2cadd3Fy3ayu6Fwacg8+NjCiMjmINac # pls change
|
||||
TURN_SERVER_ENABLED=true # true or false
|
||||
TURN_SERVER_URL=turn:a.relay.metered.ca:443
|
||||
TURN_SERVER_USERNAME=e8dd65b92c62d3e36cafb807
|
||||
TURN_SERVER_CREDENTIAL=uWdWNmkhvyqTEswO
|
||||
|
||||
# IP lookup
|
||||
# Using GeoJS to get more info about peer by IP
|
||||
|
@ -52,32 +46,35 @@ API_KEY_SECRET=8jBEI8KVKj2cadd3Fy3ayu6Fwacg8+NjCiMjmINac # pls change
|
|||
|
||||
IP_LOOKUP_ENABLED=false # true or false
|
||||
|
||||
# Survey URL
|
||||
# Using to redirect the client after close the call (feedbacks, website...)
|
||||
# API
|
||||
# The response will give you a entrypoint / Room URL for your meeting.
|
||||
# curl -X POST "http://localhost:3000/api/v1/meeting" -H "authorization: mirotalk_default_secret" -H "Content-Type: application/json"
|
||||
|
||||
SURVEY_ENABLED=false # or true
|
||||
API_KEY_SECRET=mirotalk_default_secret
|
||||
|
||||
# Survey URL
|
||||
# Using to redirect the client after close the call (feedbacks, website...)
|
||||
|
||||
SURVEY_ENABLED=true # true or false
|
||||
SURVEY_URL=https://www.questionpro.com/t/AUs7VZq00L
|
||||
|
||||
# Sentry (optional)
|
||||
# 1. Goto https://sentry.io/
|
||||
# 2. Create account
|
||||
# 3. Goto Settings/Projects/YourProjectName/Client Keys (DSN)
|
||||
# Sentry (optional)
|
||||
# 1. Goto https://sentry.io/
|
||||
# 2. Create account
|
||||
# 3. Goto Settings/Projects/YourProjectName/Client Keys (DSN)
|
||||
|
||||
SENTRY_ENABLED=false # or true
|
||||
SENTRY_ENABLED=false # true or false
|
||||
SENTRY_DSN=YourClientKeyDSN
|
||||
SENTRY_TRACES_SAMPLE_RATE=1.0
|
||||
|
||||
# Slack Integration (optional)
|
||||
# 1. Goto https://api.slack.com/apps/
|
||||
# 2. Create your app
|
||||
# 3. On Settings - Basic Information - App Credentials chose your Signing Secret
|
||||
# 4. Create a Slash Commands and put as Request URL: https://your.domain.name/slack
|
||||
# Slack Integration (optional)
|
||||
# 1. Goto https://api.slack.com/apps/
|
||||
# 2. Create your app
|
||||
# 3. On Settings - Basic Information - App Credentials chose your Signing Secret
|
||||
# 4. Create a Slash Commands and put as Request URL: https://your.domain.name/slack
|
||||
|
||||
SLACK_ENABLED=false # or true
|
||||
SLACK_SIGNING_SECRET=YourSlackSigningSecret
|
||||
|
||||
# Auto deploy on Railway
|
||||
# https://railway.app/new/template/mirotalk?referralCode=mirotalk
|
||||
SLACK_ENABLED=false # true or false
|
||||
SLACK_SIGNING_SECRET=YourSlackSigningSecret
|
||||
|
||||
# ChatGPT/OpenAI
|
||||
# 1. Goto https://platform.openai.com/
|
||||
|
|
Loading…
Reference in New Issue
Block a user