point mod_pagespeed submodule to the latest rev (#1433)

* point mod_pagespeed submodule to the latest rev
* Add missing vhost for test "Image rewrite with flush"
This commit is contained in:
Otto van der Schaaf
2017-06-27 23:53:31 +02:00
committed by GitHub
parent 5631800479
commit 54847f6d1d
2 changed files with 20 additions and 1 deletions
+19
View File
@@ -1785,6 +1785,25 @@ http {
pagespeed DisableFilters add_instrumentation; pagespeed DisableFilters add_instrumentation;
pagespeed CriticalImagesBeaconEnabled false; pagespeed CriticalImagesBeaconEnabled false;
} }
server {
pagespeed on;
listen @@SECONDARY_PORT@@;
listen [::]:@@SECONDARY_PORT@@;
server_name image-rewrite-with-flush.example.com;
pagespeed FileCachePath "@@FILE_CACHE@@";
pagespeed RewriteLevel PassThrough;
pagespeed UrlValuedAttribute li data-thumb image;
pagespeed EnableFilters core;
location ~ \.php$ {
fastcgi_param SCRIPT_FILENAME $request_filename;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_pass 127.0.0.1:9000;
fastcgi_buffering off;
}
}
server { server {
listen @@PRIMARY_PORT@@; listen @@PRIMARY_PORT@@;
listen [::]:@@PRIMARY_PORT@@; listen [::]:@@PRIMARY_PORT@@;