examples - add the last missing README.md stubs
This commit is contained in:
parent
22e2fe869f
commit
50266c2285
11
examples/tomcat/README.md
Normal file
11
examples/tomcat/README.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# Tomcat
|
||||||
|
|
||||||
|
Deploy bunkerized-nginx in front of Jakarta EE apps.
|
||||||
|
|
||||||
|
## Architecture
|
||||||
|
|
||||||
|
<img src="https://github.com/bunkerity/bunkerized-nginx/blob/dev/examples/tomcat/architecture.png?raw=true" />
|
||||||
|
|
||||||
|
## Docker
|
||||||
|
|
||||||
|
See [docker-compose.yml](https://github.com/bunkerity/bunkerized-nginx/blob/master/examples/tomcat/docker-compose.yml).
|
||||||
11
examples/tor-hidden-service/README.md
Normal file
11
examples/tor-hidden-service/README.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# Tomcat
|
||||||
|
|
||||||
|
Secure your TOR hidden services ".onion" with bunkerized-nginx.
|
||||||
|
|
||||||
|
## Architecture
|
||||||
|
|
||||||
|
<img src="https://github.com/bunkerity/bunkerized-nginx/blob/dev/examples/tor-hidden-service/architecture.png?raw=true" />
|
||||||
|
|
||||||
|
## Docker
|
||||||
|
|
||||||
|
See [docker-compose.yml](https://github.com/bunkerity/bunkerized-nginx/blob/master/examples/tor-hidden-service/docker-compose.yml).
|
||||||
23
examples/web-ui/README.md
Normal file
23
examples/web-ui/README.md
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# Web UI
|
||||||
|
|
||||||
|
Use the web UI panel to configure your bunkerized-nginx instances.
|
||||||
|
|
||||||
|
## Architecture
|
||||||
|
|
||||||
|
<img src="https://github.com/bunkerity/bunkerized-nginx/blob/dev/examples/web-ui/architecture.png?raw=true" />
|
||||||
|
|
||||||
|
## 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
|
||||||
@ -23,10 +23,9 @@ services:
|
|||||||
- DISABLE_DEFAULT_SERVER=yes
|
- DISABLE_DEFAULT_SERVER=yes
|
||||||
- USE_CLIENT_CACHE=yes
|
- USE_CLIENT_CACHE=yes
|
||||||
- USE_GZIP=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_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_USE_REVERSE_PROXY=yes
|
||||||
- admin.example.com_REVERSE_PROXY_URL=/admin/ # change it to something hard to guess
|
- admin.example.com_REVERSE_PROXY_URL=/admin/ # change it to something hard to guess
|
||||||
- admin.example.com_REVERSE_PROXY_HOST=http://myui:5000/
|
- admin.example.com_REVERSE_PROXY_HOST=http://myui:5000/
|
||||||
@ -42,8 +41,11 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- autoconf:/etc/nginx
|
- autoconf:/etc/nginx
|
||||||
environment:
|
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
|
- 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:
|
myuiproxy:
|
||||||
image: tecnativa/docker-socket-proxy
|
image: tecnativa/docker-socket-proxy
|
||||||
@ -51,7 +53,6 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
environment:
|
environment:
|
||||||
- POST=1
|
|
||||||
- CONTAINERS=1
|
- CONTAINERS=1
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
11
examples/wordpress/README.md
Normal file
11
examples/wordpress/README.md
Normal file
@ -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
|
||||||
|
|
||||||
|
<img src="https://github.com/bunkerity/bunkerized-nginx/blob/dev/examples/wordpress/architecture.png?raw=true" />
|
||||||
|
|
||||||
|
## Docker
|
||||||
|
|
||||||
|
See [docker-compose.yml](https://github.com/bunkerity/bunkerized-nginx/blob/master/examples/wordpress/docker-compose.yml).
|
||||||
11
examples/zammad/README.md
Normal file
11
examples/zammad/README.md
Normal file
@ -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
|
||||||
|
|
||||||
|
<img src="https://github.com/bunkerity/bunkerized-nginx/blob/dev/examples/zammad/architecture.png?raw=true" />
|
||||||
|
|
||||||
|
## Docker
|
||||||
|
|
||||||
|
See [docker-compose.yml](https://github.com/bunkerity/bunkerized-nginx/blob/master/examples/zammad/docker-compose.yml).
|
||||||
Loading…
x
Reference in New Issue
Block a user