uhlhosting commented on issue #1720:
URL: 
https://github.com/apache/incubator-pagespeed-ngx/issues/1720#issuecomment-731857751


   ```
   proxy_temp_path /www/server/nginx/proxy_temp_dir;
   proxy_cache_path /www/server/nginx/proxy_cache_dir levels=1:2 
keys_zone=cache_one:20m inactive=1d max_size=5g;
   client_body_buffer_size 512k;
   proxy_connect_timeout 60;
   proxy_read_timeout 60;
   proxy_send_timeout 60;
   proxy_buffer_size 32k;
   proxy_buffers 4 64k;
   proxy_busy_buffers_size 128k;
   proxy_temp_file_write_size 128k;
   proxy_next_upstream error timeout invalid_header http_500 http_503 http_404;
   proxy_cache cache_one;
   ```
   
   This is the proxy.conf.
   
   ```
        location ~ [^/]\.php(/|$)
        {
                try_files $uri =404;
                fastcgi_pass  unix:/tmp/php-cgi-74.sock;
                fastcgi_index index.php;
                include fastcgi.conf;
                include pathinfo.conf;
        }
   ```
   
   This it the enable-php.conf.
   
   the rewrite file is empty yet that is linked to the frontend where users can 
add manually rewrite rules, at the moment is empty.
   
   
   5. here that was correct your mention of port 80, i had it together before, 
just some of my testing made me change it, i changed it back so now its on same 
server entry with 443 this was the default .
   
   Other very strange behaviour would be the page sometimes giving a blank 
white page, and also there is a 404 and a 501 errors hit from time to time. 
guess still experimenting , would need to start with less filters.
   
   I will update the newly renewed configs, once I finish them. Any idea why 
the timeouts of the domain when using refresh only.
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to