Skip to content

Commit 766fe7b

Browse files
author
Benjamin Calef
committed
[v1.6.0] update vm to debian buster
2 parents d946683 + a927670 commit 766fe7b

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Fast Virtual Machine for Magento2
22

3-
[![vagrant](https://img.shields.io/badge/vagrant-debian:bullseye-blue.svg?longCache=true&style=flat-square&label=vagrant&logo=vagrant)](https://app.vagrantup.com/geerlingguy/boxes/debian11)
3+
[![vagrant](https://img.shields.io/badge/vagrant-debian:bullseye-blue.svg?longCache=true&style=flat-square&label=vagrant&logo=vagrant)](https://app.vagrantup.com/geerlingguy/boxes/debian10)
44
[![install-git](https://img.shields.io/badge/git-blue.svg?longCache=true&style=flat-square&label=setup&logo=git)](https://github.com/zepgram/magento2-fast-vm/blob/master/config.yaml.example)
55
[![install-composer](https://img.shields.io/badge/composer-blue.svg?longCache=true&style=flat-square&label=setup&logo=composer)](https://github.com/zepgram/magento2-fast-vm/blob/master/config.yaml.example)
66
[![mount](https://img.shields.io/badge/nfs/rsync-blue.svg?longCache=true&style=flat-square&label=mount)](https://github.com/zepgram/magento2-fast-vm/releases)
@@ -222,13 +222,6 @@ Otherwise, you can also completely disable elasticsearch by installing this modu
222222

223223
## Issues
224224

225-
### Linux
226-
On version 1.6.0, I updated the machine to debian 11 bullseye, since I personally got this error:
227-
```shell
228-
mount.nfs: Connection timed out
229-
```
230-
Just fall back to default mount to avoid this issue, if you have any information about this issue please let me know.
231-
232225
### Windows 10
233226
There is a known [issue with composer installation](https://github.com/zepgram/magento2-fast-vm/issues/70) on windows 10.<br>
234227
This issue could not be solved yet, and has already been reported 2 times.<br>

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ end
3737
# Vagrant configure
3838
Vagrant.configure(2) do |config|
3939
# Virtual machine
40-
config.vm.box = 'geerlingguy/debian11'
40+
config.vm.box = 'geerlingguy/debian10'
4141

4242
# Host manager configuration
4343
config.vm.define vmconf['host_name']

provision/020-system-services.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ rm -rf /home/vagrant/ssl && cd /home/vagrant
110110

111111
# Nginx
112112
perl -ne 'if ( m|\#location.*php\$ \{| .. m|^\s*#\}| ) { s/#//g; } print' -i /etc/nginx/sites-available/default
113-
sed -i "s|fastcgi_pass unix:/var/run/php/.*|fastcgi_pass unix:/var/run/php/php${PROJECT_PHP_VERSION}-fpm.sock;|" /etc/nginx/sites-available/default
113+
sed -i "s|fastcgi_pass unix:/run/php/.*|fastcgi_pass unix:/run/php/php${PROJECT_PHP_VERSION}-fpm.sock;|" /etc/nginx/sites-available/default
114114
sed -i "s/With php-.*//" /etc/nginx/sites-available/default
115115
sed -i "s/fastcgi_pass 127.0.0.1:9000;//" /etc/nginx/sites-available/default
116116
sed -i 's/index index.html index.htm index.nginx-debian.html;/index index.php index.html index.htm index.nginx-debian.html;/' /etc/nginx/sites-available/default

0 commit comments

Comments
 (0)