ALMAJD Wiki
Login
Php
1- $ doas pkg_add php-7.4 <br>$ doas rcctl enable php74_fpm <br>$ doas rcctl start php74_fpm 2- doas nano /etc/httpd.conf, add the following block: ```text 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" } } ```