Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NextCloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ansible
Roles
NextCloud
Compare revisions
881bba174cf1aca7ceb659a371671dbedb9f6c11 to cea27ca1f4483812c95420012d8ee93012c1a120
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ansible/roles/nextcloud
Select target project
No results found
cea27ca1f4483812c95420012d8ee93012c1a120
Select Git revision
Branches
main
1 result
Swap
Target
ansible/roles/nextcloud
Select target project
ansible/roles/nextcloud
1 result
881bba174cf1aca7ceb659a371671dbedb9f6c11
Select Git revision
Branches
main
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Add support for coturn
· cea27ca1
jurgenhaas
authored
7 months ago
cea27ca1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
templates/docker-compose.yml
+27
-0
27 additions, 0 deletions
templates/docker-compose.yml
with
27 additions
and
0 deletions
templates/docker-compose.yml
View file @
cea27ca1
...
...
@@ -118,3 +118,30 @@ services:
volumes
:
-
/etc/timezone:/etc/timezone:ro
-
/etc/localtime:/etc/localtime:ro
{
%
if nextcloud.turn defined %
}
coturn
:
image
:
instrumentisto/coturn:latest
restart
:
unless-stopped
networks
:
-
traefik-public
command
:
-
'
--realm={{
nextcloud.turndomain
}}'
-
'
--server-name=turn-server'
-
'
--fingerprint'
-
'
--listening-ip=0.0.0.0'
-
'
--external-ip={{
static_ipv4
}}'
-
'
--listening-port=3478'
-
'
--min-port=60100'
-
'
--max-port=60300'
-
'
--log-file=/var/log/turnserver.log'
-
'
--tls-listening-port=443'
-
'
--use-auth-secret'
-
'
--static-auth-secret={{
nextcloud.turn.secret
}}'
labels
:
traefik.enable
:
'
true'
traefik.docker.network
:
traefik-public
traefik.http.routers.turn-nextcloud_{{ nextcloud.id }}.rule
:
Host(`{{ nextcloud.turn.domain }}`)
traefik.http.routers.turn-nextcloud_{{ nextcloud.id }}.tls
:
'
true'
traefik.http.routers.turn-nextcloud_{{ nextcloud.id }}.tls.certresolver
:
lakedrops
{
%
endif %
}
This diff is collapsed.
Click to expand it.