てか /custom.css ってあるべきものなのかな?
$ curl -I https://mastodon.zunda.ninja/custom.css
HTTP/1.1 200 OK
:
Server: Mastodon
:
Via: 1.1 vegur
ほー!(bodyはないっぽ)
curl --http1.1 -v http:// place-of-refuge.com/custom.css
だとNginxが301をくれるんですね=
curl --http1.1 -v https:// place-of-refuge.com/custom.css
だと
curl: (52) Empty reply from server
空じゃなの再現
```
curl -L 'https://place-of-refuge.com/custom.css' --http1.1 -v > /dev/null
```
なんらか一定 nginx が怪しそうな感じはある
```
$ curl -L 'https://place-of-refuge.com/custom.css' > /dev/null
* HTTP/2 stream 0 was not closed cleanly: INTERNAL_ERROR (err 2)
* stopped the pause stream!
* Connection #0 to host place-of-refuge.com left intact
curl: (92) HTTP/2 stream 0 was not closed cleanly: INTERNAL_ERROR (err 2)
```
GET https://place-of-refuge.com/custom.css net::ERR_HTTP2_PROTOCOL_ERROR 200
なあにこれ
@mayaeh @noellabo 弊ぼっちはビルド時にbuidlpackが走らせるassets:cleanでたまにprecompileしたassetsが消える罠(precompileに3秒以上かかると最初にできたassetsは古いバージョンだと思われちゃう)にかかって、Gemfileを
-gem 'webpacker', '~> 5.4'
+gem 'webpacker', git: 'https://github.com/zunda/webpacker.git', branch: 'clear-command-with-better-versioning'
してあります。がそれ以外だとエラーやらログやらみないとなかなか…
@noellabo @zundan カスタマイズされているそうですしソースを見たいですね。
https://place-of-refuge.com/about にあるソースの URL は本家のままのようです。