.. | ||
site | ||
static | ||
docker-compose.yml | ||
Dockerfile | ||
README.md |
static site with templates
consult Dockerfile or docker-compose.yml - both are simple and fine enough.
mostly same as simple static site except environment variable NGX_PROCESS_STATIC=1
.
configuration:
server {
listen 8080;
}
Also note that there's no index.html
but index.html.j2
:
<hmtl>
<body>
<h1>Hello World</h1>
This image is powered by Angie {{ env.ANGIE_VERSION }} and Python {{ env.PYTHON_VERSION }}.
</body>
</hmtl>