34 lines
813 B
YAML
34 lines
813 B
YAML
# Copyright VMware, Inc.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
command:
|
|
check-enabled-modules:
|
|
exec: php -m
|
|
exit-status: 0
|
|
stdout:
|
|
{{ range $module := .Vars.phpmodules }}
|
|
- "{{ $module }}"
|
|
{{ end }}
|
|
file:
|
|
# HTTP vhost should have been properly rendered
|
|
/opt/bitnami/apache/conf/vhosts/phpbb-vhost.conf:
|
|
exists: true
|
|
filetype: file
|
|
contents:
|
|
- /DocumentRoot.*/opt/bitnami/phpbb/
|
|
- "Alias /bitnami/phpbb /bitnami/phpbb"
|
|
# HTTPS vhost should have been properly rendered
|
|
/opt/bitnami/apache/conf/vhosts/phpbb-https-vhost.conf:
|
|
exists: true
|
|
filetype: file
|
|
contents:
|
|
- "SSLEngine on"
|
|
- /DocumentRoot.*/opt/bitnami/phpbb/
|
|
- "Alias /bitnami/phpbb /bitnami/phpbb"
|
|
group:
|
|
daemon:
|
|
exists: true
|
|
user:
|
|
daemon:
|
|
exists: true
|