usually you don't store errors on a database. If indeed you're not doing 
it, errors are just files within the application/yourappname/errors. You 
can clear it or just move some files over to "speed up" the process of 
inspecting those. Then you can review them and clear, and move to the 
errors folder the next batch, and so on.

On Tuesday, July 23, 2013 11:01:37 AM UTC+2, BlueShadow wrote:
>
> I'm Using nginx. I increased the overall timeout to 120. but it times out 
> in way less than 120 secs.
> conf file:
> user www-data;
> worker_processes 4;
> pid /var/run/nginx.pid;
>
> events {
>         worker_connections 768;
>         # multi_accept on;
> }
>
> http {
>
>         ##
>         # Basic Settings
>         ##
>
>         sendfile on;
>         tcp_nopush on;
>         tcp_nodelay on;
>         keepalive_timeout 120;
>         types_hash_max_size 2048;
>         client_max_body_size 45m;
>         # server_tokens off;
>        include /etc/nginx/mime.types;
>         default_type application/octet-stream;
>
>         ##
>         # Gzip Settings
>         ##
>
>         gzip on;
>         gzip_disable "msie6";
>
>         # gzip_vary on;
>         # gzip_proxied any;
>         # gzip_comp_level 6;
>         # gzip_buffers 16 8k;
>         # gzip_http_version 1.1;
>  gzip_types text/plain text/css application/json application/x-javascript 
> text/xml application/xml application/xml+rss text/javascript;
>
>         ##
>         # nginx-naxsi config
>         ##
>         # Uncomment it if you installed nginx-naxsi
>         ##
>
>         #include /etc/nginx/naxsi_core.rules;
>
> ...
>                    
>
>        
>

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to