I managed to fix my problem by configuring nginx and fastcgi. Main part was this:
location ~ \.php$ {
include fastcgi_params;
fastcgi_param HTTPS "on";
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community