Skip to content

Commit

Permalink
Improve template defaults
Browse files Browse the repository at this point in the history
As per official documentation HTTPS is not technically needed and will work fine when bound to localhost behind proxy. Also added the initial config for internal Auth. Will still require the user to manually set up a username and password. via "prosodyctl" but its just one less config change regular users need to make in the template. https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-docker/#authentication
  • Loading branch information
Flow-dev0 authored Jan 22, 2025
1 parent 1b62e1f commit 22ae346
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions templates/compose/jitsi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ services:
container_name: jitsi-web
restart: unless-stopped
ports:
- "8001:80"
- "8443:443"
- '127.0.0.1:8001:80'
- '127.0.0.1:8443:443'
volumes:
- ~/.jitsi-meet-cfg/web:/config:Z
- ~/.jitsi-meet-cfg/web/crontabs:/var/spool/cron/crontabs:Z
Expand All @@ -26,6 +26,9 @@ services:
- JIGASI_XMPP_PASSWORD=$SERVICE_PASSWORD_JITSI
- JVB_AUTH_PASSWORD=$SERVICE_PASSWORD_JITSI
- TZ=UTC
- DISABLE_HTTPS=1
- ENABLE_HTTP_REDIRECT=0
- ENABLE_LETS_ENCRYPT=0
networks:
meet.jitsi:
aliases:
Expand Down Expand Up @@ -54,6 +57,8 @@ services:
- JVB_AUTH_PASSWORD
- PUBLIC_URL=$SERVICE_FQDN_JITSI
- TZ
- ENABLE_AUTH=1
- AUTH_TYPE=internal
networks:
meet.jitsi:
aliases:
Expand Down

0 comments on commit 22ae346

Please sign in to comment.