Skip to content
Snippets Groups Projects
Verified Commit 267d0e88 authored by Armin Co's avatar Armin Co
Browse files

Moved letsencrypt into main repo

parent 7fe05f80
Branches
No related tags found
No related merge requests found
......@@ -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 "
......
......@@ -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
}
......
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
#!/bin/bash
docker logs $(docker ps -q) -f
\ No newline at end of file
docker-compose logs -f
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment