Install Error

Re: Install Error

by Wouter Lenssen -
Number of replies: 0

Hi,

I'm having the same issue. Running OSX Mojave, NGINX, MariaDB

What am i doing wrong. The installation did look ok, no errors.

Please help/advise..


My Nginx config:

server {

    client_max_body_size 200M;

    listen 80;

    server_name moodle.ld;

    root /Users/[username]/var/www/html/moodle;


    access_log /Users/[username]/var/log/moodle/access.log;

    error_log /Users/[username]/var/log/moodle/error.log;


    location / {

        index index.php;

        try_files $uri $uri/ /index.php?q=$uri&$args;

    }


location /dataroot/ {

    internal;

    alias /Users/[username]/var/www/html/moodledata/;

}


    include  /usr/local/etc/nginx/includes/php71.conf;

}