Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Automated Jitsi-Meet Setup
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Armin Co
Automated Jitsi-Meet Setup
Commits
a56086b8
Commit
a56086b8
authored
4 years ago
by
Armin Co
Browse files
Options
Downloads
Patches
Plain Diff
Fixed if statement
parent
ad5fcbc1
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
config.sh
+3
-3
3 additions, 3 deletions
config.sh
with
3 additions
and
3 deletions
config.sh
+
3
−
3
View file @
a56086b8
...
...
@@ -33,7 +33,7 @@ LETSENCRYPT_URL="$GIT_URL$LETSENCRYPT_DIR".git
# Jitsi
JITSI_DIR
=
jitsi-auto-config
JITSI_URL
=
"
$GIT_URL$JITSI_DIR
"
.git
if
[
$USE_JITSI
=
"true"
]
;
then
if
[
"
$USE_JITSI
"
=
"true"
]
;
then
jitsi_compose_file
=
" -f jitsi/docker-compose.yml "
DOCKER_COMPOSE_FILES+
=
$jitsi_compose_file
SUB_DOMAINS+
=
"jitsi,"
...
...
@@ -42,7 +42,7 @@ fi
# noVNC - Screen sharing with VNC
NOVNC_DIR
=
novnc
NOVNC_URL
=
"
$GIT_URL$NOVNC_DIR
"
.git
if
[
$USE_NO_VNC
=
"true"
]
;
then
if
[
"
$USE_NO_VNC
"
=
"true"
]
;
then
novnc_compose_file
=
" -f ./novnc/docker-compose.yml "
DOCKER_COMPOSE_FILES+
=
$novnc_compose_file
fi
...
...
@@ -50,7 +50,7 @@ fi
# Mumble
MUMBLE_DIR
=
build-mumble-web
MUMBLE_URL
=
https://github.com/Johni0702/mumble-web.git
if
[
$USE_MUMBLE
=
"true"
]
;
then
if
[
"
$USE_MUMBLE
"
=
"true"
]
;
then
mumble_compose_file
=
" -f ./build-mumble-web/docker-compose.production.yml"
DOCKER_COMPOSE_FILES+
=
$mumble_compose_file
SUB_DOMAINS+
=
"mumble-web"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment