Support the ongoing development of Laravel.io →
Authentication Security Requests
Last updated 1 year ago.
0
Solution

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;
}
Last updated 8 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

huoy huoy Joined 9 May 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.