From 50266c22851ae9d4407a3657c0f3d6920f41e34c Mon Sep 17 00:00:00 2001 From: bunkerity Date: Thu, 5 Aug 2021 09:48:27 +0200 Subject: [PATCH] examples - add the last missing README.md stubs --- examples/tomcat/README.md | 11 +++++++++++ examples/tor-hidden-service/README.md | 11 +++++++++++ examples/web-ui/README.md | 23 +++++++++++++++++++++++ examples/web-ui/docker-compose.yml | 11 ++++++----- examples/wordpress/README.md | 11 +++++++++++ examples/zammad/README.md | 11 +++++++++++ 6 files changed, 73 insertions(+), 5 deletions(-) create mode 100644 examples/tomcat/README.md create mode 100644 examples/tor-hidden-service/README.md create mode 100644 examples/web-ui/README.md create mode 100644 examples/wordpress/README.md create mode 100644 examples/zammad/README.md diff --git a/examples/tomcat/README.md b/examples/tomcat/README.md new file mode 100644 index 0000000..ee1a2fe --- /dev/null +++ b/examples/tomcat/README.md @@ -0,0 +1,11 @@ +# Tomcat + +Deploy bunkerized-nginx in front of Jakarta EE apps. + +## Architecture + + + +## Docker + +See [docker-compose.yml](https://github.com/bunkerity/bunkerized-nginx/blob/master/examples/tomcat/docker-compose.yml). diff --git a/examples/tor-hidden-service/README.md b/examples/tor-hidden-service/README.md new file mode 100644 index 0000000..715d66c --- /dev/null +++ b/examples/tor-hidden-service/README.md @@ -0,0 +1,11 @@ +# Tomcat + +Secure your TOR hidden services ".onion" with bunkerized-nginx. + +## Architecture + + + +## Docker + +See [docker-compose.yml](https://github.com/bunkerity/bunkerized-nginx/blob/master/examples/tor-hidden-service/docker-compose.yml). diff --git a/examples/web-ui/README.md b/examples/web-ui/README.md new file mode 100644 index 0000000..7091d94 --- /dev/null +++ b/examples/web-ui/README.md @@ -0,0 +1,23 @@ +# Web UI + +Use the web UI panel to configure your bunkerized-nginx instances. + +## Architecture + + + +## Docker + +See [docker-compose.yml](https://github.com/bunkerity/bunkerized-nginx/blob/master/examples/web-ui/docker-compose.yml). + +## Linux + +TODO + +## Autoconf + +TODO + +## Swarm + +TODO diff --git a/examples/web-ui/docker-compose.yml b/examples/web-ui/docker-compose.yml index 993bad5..7a0cc41 100644 --- a/examples/web-ui/docker-compose.yml +++ b/examples/web-ui/docker-compose.yml @@ -23,10 +23,9 @@ services: - DISABLE_DEFAULT_SERVER=yes - USE_CLIENT_CACHE=yes - USE_GZIP=yes + - USE_API=yes + - API_URI=/ChangeMeToSomethingHardToGuess # change it to something hard to guess + must match API_URI for myui service - admin.example.com_SERVE_FILES=no - - admin.example.com_USE_AUTH_BASIC=yes - - admin.example.com_AUTH_BASIC_USER=admin # change it to something hard to guess - - admin.example.com_AUTH_BASIC_PASSWORD=admin # change it to something hard to guess - admin.example.com_USE_REVERSE_PROXY=yes - admin.example.com_REVERSE_PROXY_URL=/admin/ # change it to something hard to guess - admin.example.com_REVERSE_PROXY_HOST=http://myui:5000/ @@ -42,8 +41,11 @@ services: volumes: - autoconf:/etc/nginx environment: - - ABSOLUTE_URI=https://admin.example.com/admin/ # change it to your full URI + - ABSOLUTE_URI=https://admin.example.com/admin/ # change it to your full URI - DOCKER_HOST=tcp://myuiproxy:2375 + - API_URI=/ChangeMeToSomethingHardToGuess + - ADMIN_USERNAME=admin # change it to something hard to guess + - ADMIN_PASSWORD=changeme # change it to a good password myuiproxy: image: tecnativa/docker-socket-proxy @@ -51,7 +53,6 @@ services: volumes: - /var/run/docker.sock:/var/run/docker.sock:ro environment: - - POST=1 - CONTAINERS=1 volumes: diff --git a/examples/wordpress/README.md b/examples/wordpress/README.md new file mode 100644 index 0000000..baa5505 --- /dev/null +++ b/examples/wordpress/README.md @@ -0,0 +1,11 @@ +# WordPress + +WordPress is a free and open-source content management system (CMS) written in PHP and paired with a MySQL or MariaDB database. See the official [website](https://www.wordpress.org) and [repository](https://core.trac.wordpress.org/browser) for more information. + +## Architecture + + + +## Docker + +See [docker-compose.yml](https://github.com/bunkerity/bunkerized-nginx/blob/master/examples/wordpress/docker-compose.yml). diff --git a/examples/zammad/README.md b/examples/zammad/README.md new file mode 100644 index 0000000..83e54fd --- /dev/null +++ b/examples/zammad/README.md @@ -0,0 +1,11 @@ +# Zammad + +Zammad is a web-based, open source user support/ticketing solution. See the official [website](https://zammad.org/) and [repository](https://github.com/zammad/zammad) for more information. + +## Architecture + + + +## Docker + +See [docker-compose.yml](https://github.com/bunkerity/bunkerized-nginx/blob/master/examples/zammad/docker-compose.yml).