Page MenuHomePhabricator

Styling of status.wikimedia.org is broken
Closed, ResolvedPublic

Description

During the API outage it was revealed that status.wikimedia.org seems partly broken

Screen Shot 2016-10-17 at 18.29.19.png (2×3 px, 601 KB)

Screen Shot 2016-10-17 at 18.29.22.png (548×2 px, 286 KB)

The following resources were returning 404s
https://status.wikimedia.org/flavors/ca/css/screen.css
https://status.wikimedia.org/js/jsapi.js
https://status.wikimedia.org/js/wm_psp-4.0.6.js

Event Timeline

Mentioned in SAL (#wikimedia-operations) [2016-10-17T20:32:33Z] <Krenair> updated status.wm.o apache config on wikitech-static box to correctly serve static assets again (T148438)

Krenair added a project: SRE.

I've added the following to wikitech-static.wikimedia.org:/etc/apache2/sites-enabled/status.wikimedia.org.conf, below the existing Location block:

<LocationMatch /(flavors|js)/.*>
        ProxyPass "http://status.asm.ca.com/"
        ProxyPassReverse "http://status.asm.ca.com/"
        RequestHeader unset Accept-Encoding
        Header always set Content-Security-Policy upgrade-insecure-requests
</LocationMatch>

(The ordinary <Location /> proxies to http://status.asm.ca.com/8777/ which was the issue)