• Welcome to XF2 Addons

    You can purchase a Premium membership for only $35 per year, and this gives you access to download any or ALL of the over 400 add-ons developed for Xenforo 2.x. In addition, Premium members will get technical support. Once the Premium membership has expired you can continue to use the installed addons on your forum as long as you like.

Nginx fastcgi_read_timeout

Andy

Administrator
Staff member
If you get a 404 error after 60 seconds running an add-on and you're using Nginx, you need to set the fastcgi_read_timeout directive.

/etc/nginx/nginx.conf

Code:
http {
    #...
        fastcgi_read_timeout 300;
    #...
}

After making the change you need to reload the service:

Code:
service php5-fpm reload
service nginx reload
 
Top