FIX: Allow .otf fonts to be delivered via cdn (#10787)

The discourse-fonts package includes NotoSansJP (bold and regular), but
it is an OTF font, and it results in 404s in CDN requests.
This commit is contained in:
Penar Musaraj 2020-09-30 11:59:46 -04:00 committed by GitHub
parent f5c4594f6d
commit fb57fe7e36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ types {
upstream discourse {
server unix:/var/www/discourse/tmp/sockets/nginx.http.sock;
server unix:/var/www/discourse/tmp/sockets/nginx.https.sock;
server unix:/var/www/discourse/tmp/sockets/nginx.https.sock;
}
# inactive means we keep stuff around for 1440m minutes regardless of last access (1 week)
@ -112,7 +112,7 @@ server {
break;
}
location ~* (fonts|assets|plugins|uploads)/.*\.(eot|ttf|woff|woff2|ico)$ {
location ~* (fonts|assets|plugins|uploads)/.*\.(eot|ttf|woff|woff2|ico|otf)$ {
expires 1y;
add_header Cache-Control public,immutable;
add_header Access-Control-Allow-Origin *;