Php /

Php

1- $ doas pkg_add php-7.4
$ doas rcctl enable php74_fpm
$ doas rcctl start php74_fpm
2- doas nano /etc/httpd.conf, add the following block:
server "doamin-name" {

        listen on 127.0.0.1 port 80
        directory index index.php
        root "/htdocs/mail"
        location "*.php" {
               fastcgi socket "/run/php-fpm.sock" 
        }

}