Error #-200: HTTP Error
-
Hello, I had the Error #-200: HTTP Error show with only certain files that I was trying to process.
My server is set up in a Raspberry Pi runing Nginx and the problem would only occur when the file was complex but not big enough. I tried what was suggested in another post here to decrease File Chunk Size in the plugin settings but it did not work.
So I found the solution and I would like to share it with you. I also noticed from time to time a 504 Gateway timeout error. The solution for me was to increase the timeout setting to prevent the 504 error from happening and it also helped to prevent the Error #-200: HTTP Error as well.
Here is a webpage containing the solution of how to increase the nignx timeout settings:
Basically the steps are to open the nginx config file
nano /etc/nginx/nginx.conf
and add the following lines to http { }:
http {
<…>proxy_send_timeout 180s;
proxy_read_timeout 180s;
fastcgi_send_timeout 180s;
fastcgi_read_timeout 180s;
}The page I need help with: [log in to see the link]
- The topic ‘Error #-200: HTTP Error’ is closed to new replies.