I am trying to configure forma-lms (LMS 3.3.15) using nginx + php-fpm (7.4) + mysql.
I pass all 6 steps to configure database, all requierements passed. Once install process finish, I can logging to authentication page: http://forma-lms-ip
After that, nginx do a redirection to http://forma-lms-ip/..Lms
I am not a pro with nginx, I send you nginx conf for forma-lms website :
Code: Select all
serverBlock: |-
server {
listen 0.0.0.0:8080;
root /app;
index index.html index.php;
location / {
try_files $uri $uri/ /app/index.php$is_args$args;
}
location ~ \.php$ {
fastcgi_pass phpfpm-server:9000;
include fastcgi_params;
}
}
Thanks for your help.
Regards,