View Single Post
Old 10th December 2016
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

The htttp.conf is extraordinarily simple.
Code:
$ cat /etc/httpd.conf                                                                                                                                
server "mwl.lab" {
        listen on * port 80
        listen on * tls port 443
        directory auto index
        location "*.php" {
                fastcgi socket "/run/php-fpm.sock"
        }
}
The MariaDB server was installed with /usr/local/bin/mysql_install_db and configured with /usr/local/bin/mysql_secure_installation before moving the socket into the chroot per the pkg-readme document.

PHP needed a link to configure mysqli.ini, per the PHP pkg-readme document.
Reply With Quote