You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 10, 2025. It is now read-only.
The default config for the admin pages fails in pagespeed.conf with:
AH00526: Syntax error on line 345 of /usr/local/apache2/conf/pagespeed.conf
Invalid command 'Order', perhaps misspelled or defined by a module not included in the server configuration
This config is currently:
<Location /pagespeed_admin>
Order allow,deny
Allow from localhost
Allow from 127.0.0.1
SetHandler pagespeed_admin
</Location>
<Location /pagespeed_global_admin>
Order allow,deny
Allow from localhost
Allow from 127.0.0.1
SetHandler pagespeed_global_admin
</Location>
Which is ok for httpd-2.2.x.
For httpd-2.4.x however, it should be something along the lines of:
<Location /pagespeed_admin>
<RequireAny>
Require ip 127.0.0.1
</RequireAny>
SetHandler pagespeed_admin
</Location>
<Location /pagespeed_global_admin>
<RequireAny>
Require ip 127.0.0.1
</RequireAny>
SetHandler pagespeed_global_admin
</Location>
Hi,
The default config for the admin pages fails in pagespeed.conf with:
This config is currently:
Which is ok for httpd-2.2.x.
For httpd-2.4.x however, it should be something along the lines of:
Regards,