ansible-roles/lxc-php/defaults/main.yml
Jérémy Lecour 799466788f
Some checks reported errors
continuous-integration/drone/push Build was killed
lxc-php: preliminary support for PHP 8.1 container
2022-02-17 14:50:21 +01:00

24 lines
618 B
YAML

---
php_conf_short_open_tag: "Off"
php_conf_expose_php: "Off"
php_conf_display_errors: "Off"
php_conf_log_errors: "On"
php_conf_html_errors: "Off"
php_conf_allow_url_fopen: "Off"
php_conf_disable_functions: "exec,shell-exec,system,passthru,popen"
# Allows accessing a local mysql database using localhost
lxc_php_create_mysql_link: False
php_conf_mysql_socket_dir: /mysqld
php_conf_mysql_default_socket: "{{ php_conf_mysql_socket_dir }}/mysqld.sock"
lxc_php_version: Null
lxc_php_container_releases:
php56: "jessie"
php70: "stretch"
php73: "buster"
php74: "bullseye"
php80: "bullseye"
php81: "bullseye"