diff --git a/Vagrantfile b/Vagrantfile index 9381b37..6096723 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,8 +8,8 @@ Vagrant.configure("2") do |config| config.vm.provision "shell", inline: <<-SHELL pacman -Syu --noconfirm kitty-terminfo - pacman -Syu --noconfirm dokuwiki php-fpm7 nginx - systemctl enable --now php-fpm7 + pacman -Syu --noconfirm dokuwiki php-fpm nginx + systemctl enable --now php-fpm systemctl enable --now nginx rm /etc/nginx/nginx.conf SHELL diff --git a/nginx.conf b/nginx.conf index 8b0a2b2..d751151 100644 --- a/nginx.conf +++ b/nginx.conf @@ -32,7 +32,7 @@ http { location / { try_files $uri $uri/ @dokuwiki; } location ~ \.php$ { try_files $uri =404; - fastcgi_pass unix:/run/php-fpm/php-fpm7.sock; + fastcgi_pass unix:/run/php-fpm/php-fpm.sock; fastcgi_index index.php; include fastcgi.conf; }