Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
location ~ \.php$ {
    include snippets/fastcgi-php.conf;
    fastcgi_pass unix:/run/php/php7.4-fpm.sock;
  }

Disable apache

Code Block
$ sudo systemctl disable apache2

Restart ngnix

Code Block
$ sudo systemctl restart nginx

...