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
GitLab 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
fd772b45
Commit
fd772b45
authored
4 years ago
by
Armin Co
Browse files
Options
Downloads
Patches
Plain Diff
Feature configure lets encrypt
parent
f11b2458
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+4
-0
4 additions, 0 deletions
.gitignore
compose_files_conf.sh
+3
-3
3 additions, 3 deletions
compose_files_conf.sh
configure_once.sh
+26
-4
26 additions, 4 deletions
configure_once.sh
start_containers.sh
+0
-0
0 additions, 0 deletions
start_containers.sh
with
33 additions
and
7 deletions
.gitignore
0 → 100644
+
4
−
0
View file @
fd772b45
build-mumble-web
jitsi-auto-config
letsencrypt-webserver
novnc
\ No newline at end of file
This diff is collapsed.
Click to expand it.
compose_files_conf.sh
+
3
−
3
View file @
fd772b45
...
...
@@ -12,16 +12,16 @@
docker_compose_files
=
""
# noVNC
docker_compose_files+
=
" -f ./novnc/docker-compose.yml "
#
docker_compose_files+=" -f ./novnc/docker-compose.yml "
# letsencrypt
docker_compose_files+
=
" -f ./letsencrypt-webserver/docker-compose.yml "
# jitsi
docker_compose_files+
=
" -f ./jitsi-auto-config/jitsi/docker-compose.yml "
#
docker_compose_files+=" -f ./jitsi-auto-config/jitsi/docker-compose.yml "
# mumble
docker_compose_files+
=
" -f ./build-mumble-web/docker-compose.yml"
#
docker_compose_files+=" -f ./build-mumble-web/docker-compose.yml"
# "return" the string
...
...
This diff is collapsed.
Click to expand it.
configure_once.sh
+
26
−
4
View file @
fd772b45
...
...
@@ -19,7 +19,7 @@ jitsi_url="$git_url$jitsi_dir".git
## letsencrypt
#
le_dir
=
letsencrypt
_
webserver
le_dir
=
letsencrypt
-
webserver
le_url
=
"
$git_url$le_dir
"
.git
## noVNC
...
...
@@ -45,10 +45,32 @@ function clone_repositories() {
git clone
$novnc_url
}
## Configure domains and letsencrypt
#
domain
=
armin-co.de
sub_domains
=
jitsi,mumble,mumble-web
mail
=
your-webmaster-mail@somwhere.org
function
configure_letsencrypt
()
{
echo
""
echo
"Setting your letsencrypt domain settings."
echo
""
le_compose
=
$le_dir
/docker-compose.yml
sed
-i
"s/your-domain.com/
$domain
/"
$le_compose
sed
-i
"s/your_subdomains/
$sub_domains
/"
$le_compose
sed
-i
"s/your_email/
$mail
/"
$le_compose
# to use not only subdomains disable next line
# sed -i "s/- ONLY_SUBDOMAINS=true/- ONLY_SUBDOMAINS=false/" $le_dir
}
## Run configuration
#
echo
""
echo
"Starting configuration with cleaning up and pulling again."
echo
""
remove_all
clone_repositories
# configure letsencrypt
configure_letsencrypt
\ No newline at end of file
This diff is collapsed.
Click to expand it.
start_containers.sh
100644 → 100755
+
0
−
0
View file @
fd772b45
File mode changed from 100644 to 100755
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