Lofesa commented on issue #1720:
URL:
https://github.com/apache/incubator-pagespeed-ngx/issues/1720#issuecomment-739806347
If you disallow the domain, none of the url from the domain will be optimzed.
Think that pagespeed Disallow uses a regular expresion so you can use any
regular expr
uhlhosting commented on issue #1720:
URL:
https://github.com/apache/incubator-pagespeed-ngx/issues/1720#issuecomment-739890530
I think also
```
location /status {
allow xxx.xxx.xxx.xxx;
allow xxx.xxx.xxx.xxx;
deny all;
uhlhosting commented on issue #1720:
URL:
https://github.com/apache/incubator-pagespeed-ngx/issues/1720#issuecomment-739922981
What when the domain is another? Like in this case:
`Could not rewrite resource in-place because URL is not in cache:
http://127.0.0.1/nginx_status`
-
uhlhosting commented on issue #1677:
URL:
https://github.com/apache/incubator-pagespeed-mod/issues/1677#issuecomment-740089357
@oschaaf how the values of Need to check cache size against target are
changed or enforced? What is a wise action to do when this message occurs
intermitently.
oschaaf commented on issue #1677:
URL:
https://github.com/apache/incubator-pagespeed-mod/issues/1677#issuecomment-740187633
`Need to check cache size against target 10240` is informational, the
best course of action is to ignore it, it is probably nothing to worry about.
---