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
267d0e88
Verified
Commit
267d0e88
authored
Jul 29, 2020
by
Armin Co
Browse files
Options
Downloads
Patches
Plain Diff
Moved letsencrypt into main repo
parent
7fe05f80
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
compose_files_conf.sh
+1
-1
1 addition, 1 deletion
compose_files_conf.sh
configure_once.sh
+4
-1
4 additions, 1 deletion
configure_once.sh
docker-compose.yml
+27
-0
27 additions, 0 deletions
docker-compose.yml
show_docker_logs.sh
+1
-1
1 addition, 1 deletion
show_docker_logs.sh
with
33 additions
and
3 deletions
compose_files_conf.sh
+
1
−
1
View file @
267d0e88
...
...
@@ -9,7 +9,7 @@
# var that holds all
# docker-compose files
docker_compose_files
=
""
docker_compose_files
=
"
-f docker-compose.yml
"
# noVNC
# docker_compose_files+=" -f ./novnc/docker-compose.yml "
...
...
This diff is collapsed.
Click to expand it.
configure_once.sh
+
4
−
1
View file @
267d0e88
...
...
@@ -54,7 +54,7 @@ function configure_letsencrypt() {
echo
""
echo
"Setting your letsencrypt domain settings."
echo
""
le_compose
=
$le_dir
/
docker-compose.yml
le_compose
=
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
...
...
@@ -74,6 +74,9 @@ function configure_mumble() {
cd
build-mumble-web
git clone https://github.com/Johni0702/mumble-web.git
cd
..
mkdir
murmur
cp
$mumble_dir
/murmur/mumble-server.ini murmur/mumble-server.ini
touch
murmur/mumble-server.log
}
...
...
This diff is collapsed.
Click to expand it.
docker-compose.yml
0 → 100644
+
27
−
0
View file @
267d0e88
version
:
'
3.4'
services
:
reverse_proxy
:
container_name
:
reverse_proxy
image
:
linuxserver/letsencrypt
cap_add
:
-
NET_ADMIN
# for fail2ban
environment
:
-
PUID=1000
-
PGID=1000
-
TZ=Europe/Berlin
-
URL=your-domain.com
-
SUBDOMAINS=your_subdomains
-
VALIDATION=http
-
EMAIL=your_email
-
ONLY_SUBDOMAINS=true
volumes
:
-
./reverse_proxy:/config
ports
:
-
443:443
-
80:80
networks
:
-
reverse_proxy
restart
:
always
networks
:
reverse_proxy
:
\ No newline at end of file
This diff is collapsed.
Click to expand it.
show_docker_logs.sh
+
1
−
1
View file @
267d0e88
#!/bin/bash
docker logs
$(
docker ps
-q
)
-f
\ No newline at end of file
docker-compose logs
-f
\ No newline at end of file
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