From 7498f54dd2973d57da191cff0fe408f4c8bcb9cb Mon Sep 17 00:00:00 2001 From: Jeroen De Meerleer Date: Thu, 7 Dec 2023 14:41:44 +0100 Subject: [PATCH] Updated dev-vm --- .gitattributes | 0 .gitignore | 0 .yamllint | 0 LICENSE | 0 README.md | 0 Vagrantfile | 0 ansible/group_vars/all.yml | 0 ansible/group_vars/dev.yml | 21 +++++++++------------ ansible/site.yml | 1 - custom-vagrant-hosts.yml | 0 scripts/forwardports.sh | 0 vagrant-groups.yml | 0 vagrant-hosts.yml | 4 ++-- 13 files changed, 11 insertions(+), 15 deletions(-) mode change 100644 => 100755 .gitattributes mode change 100644 => 100755 .gitignore mode change 100644 => 100755 .yamllint mode change 100644 => 100755 LICENSE mode change 100644 => 100755 README.md mode change 100644 => 100755 Vagrantfile mode change 100644 => 100755 ansible/group_vars/all.yml mode change 100644 => 100755 ansible/group_vars/dev.yml mode change 100644 => 100755 ansible/site.yml mode change 100644 => 100755 custom-vagrant-hosts.yml mode change 100644 => 100755 scripts/forwardports.sh mode change 100644 => 100755 vagrant-groups.yml mode change 100644 => 100755 vagrant-hosts.yml diff --git a/.gitattributes b/.gitattributes old mode 100644 new mode 100755 diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/.yamllint b/.yamllint old mode 100644 new mode 100755 diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/Vagrantfile b/Vagrantfile old mode 100644 new mode 100755 diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml old mode 100644 new mode 100755 diff --git a/ansible/group_vars/dev.yml b/ansible/group_vars/dev.yml old mode 100644 new mode 100755 index 3943196..085fde9 --- a/ansible/group_vars/dev.yml +++ b/ansible/group_vars/dev.yml @@ -12,12 +12,12 @@ apache_packages: - apache2-utils - libapache2-mpm-itk apache_mods_enabled: - - rewrite.load - - headers.load - - proxy.load - - proxy_fcgi.load + - rewrite + - headers + - proxy + - proxy_fcgi apache_remove_default_vhost: true -php_version: "8.1" +php_version: "8.3" php_packages_extra: [ "libapache2-mod-php{{ php_version }}", "php{{ php_version }}-intl", "php{{ php_version }}-mysql", "php{{ php_version }}-zip"] php_enable_php_fpm: true php_fpm_pool_user: "vagrant" @@ -27,7 +27,7 @@ php_date_timezone: "Europe/Brussels" php_upload_max_filesize: 4G php_post_max_size: 4G php_memory_limit: 2G -php_xdebug_version: '3.1.4' +php_xdebug_version: '3.3.0' php_opcache_zend_extension: "opcache.so" php_opcache_enable: "1" php_opcache_enable_cli: "1" @@ -46,12 +46,9 @@ mysql_packages: mysql_users: - name: webcron_rw password: letmein - host: '%' - priv: "webcron.*:ALL PRIVILEGES" + host: 'localhost' + priv: "*.*:ALL PRIVILEGES" mysql_databases: - name: webcron encoding: utf8 - collation: utf8_general_ci -nodejs_npm_global_packages: - - sass - - yarn + collation: utf8_general_ci \ No newline at end of file diff --git a/ansible/site.yml b/ansible/site.yml old mode 100644 new mode 100755 index 0245e55..e435d3a --- a/ansible/site.yml +++ b/ansible/site.yml @@ -9,4 +9,3 @@ - geerlingguy.php-xdebug - geerlingguy.mysql - geerlingguy.composer - - geerlingguy.nodejs diff --git a/custom-vagrant-hosts.yml b/custom-vagrant-hosts.yml old mode 100644 new mode 100755 diff --git a/scripts/forwardports.sh b/scripts/forwardports.sh old mode 100644 new mode 100755 diff --git a/vagrant-groups.yml b/vagrant-groups.yml old mode 100644 new mode 100755 diff --git a/vagrant-hosts.yml b/vagrant-hosts.yml old mode 100644 new mode 100755 index a293c6c..8f91ba6 --- a/vagrant-hosts.yml +++ b/vagrant-hosts.yml @@ -5,12 +5,12 @@ # --- - name: webcron.test - box: bento/ubuntu-20.04 + box: bento/ubuntu-22.04 ip: 192.168.56.11 memory: 2048 cpus: 2 synced_folders: - - src: ../webcron + - src: ../app dest: /mnt/dev-root options: :create: true