40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
version: '3'
|
|
|
|
services:
|
|
|
|
mywww:
|
|
image: bunkerity/bunkerized-nginx
|
|
restart: always
|
|
ports:
|
|
- 80:8080
|
|
- 443:8443
|
|
volumes:
|
|
- ./letsencrypt:/etc/letsencrypt
|
|
- ./web-files:/www:ro
|
|
- autoconf:/etc/nginx
|
|
environment:
|
|
- SERVER_NAME=admin.domain.com # replace with your domain
|
|
- MULTISITE=yes
|
|
- AUTO_LETS_ENCRYPT=yes
|
|
- REDIRECT_HTTP_TO_HTTPS=yes
|
|
- DISABLE_DEFAULT_SERVER=yes
|
|
- USE_CLIENT_CACHE=yes
|
|
- USE_GZIP=yes
|
|
- USE_BROTLI=yes
|
|
- admin.domain.com_SERVE_FILES=no
|
|
- admin.domain.com_USE_AUTH_BASIC=yes
|
|
- admin.domain.com_AUTH_BASIC_USER=admin # change it to something hard to guess
|
|
- admin.domain.com_AUTH_BASIC_PASSWORD=admin # change it to something hard to guess
|
|
- admin.domain.com_USE_REVERSE_PROXY=yes
|
|
- admin.domain.com_REVERSE_PROXY_URL=/admin/ # change it to something hard to guess
|
|
- admin.domain.com_REVERSE_PROXY_HOST=http://myui:5000/
|
|
labels:
|
|
- "bunkerized-nginx.UI"
|
|
|
|
myui:
|
|
image: bunkerity/bunkerized-nginx-ui
|
|
restart: always
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- autoconf:/etc/nginx
|