-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathcompose.yaml
More file actions
26 lines (26 loc) · 958 Bytes
/
compose.yaml
File metadata and controls
26 lines (26 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
services:
attic_lua_csp:
image: attic_lua_csp
build: .
ports:
- "8000:80"
volumes:
# Pick up the closer.lua script etc.
# (e.g. set this to a checkout of infrastructure-p6/modules/closer_cgi/files)
- ${VAR_DYN:-.}:/var/www/dyn
# Needs to match xxx.apache.org or closer.lua reverts to default template
- ${VAR_HTML:-./_docker/www}:/var/www/site.apache.org
- ${VAR_LOG:-./_docker/log}:/var/log/apache2
environment:
# Pass in site name
- VAR_NAME=${VAR_NAME:-localhost}
# Act as though _ATTIC directory is present (if yes)
- VAR_ATTIC=${VAR_ATTIC:-no}
# if defined, use as the source for pages
# e.g. https://attic.apache.org/
# Can also use svn and GH raw input
- VAR_HOSTURL=${VAR_HOSTURL:-}
# log level for webserver
- VAR_LEVEL=${VAR_LEVEL:-info}
# Optional veride for CSP
- CSP_PROJECT_DOMAINS=${CSP_PROJECT_DOMAINS:-}