Fix favicon mime type
Simon Volpert
6 years ago
34 | 34 | }, |
35 | 35 | 'cache': [], |
36 | 36 | } |
37 | binary_extensions = ['png', 'jpg', 'gif'] | |
37 | binary_extensions = ['png', 'jpg', 'gif', 'ico'] | |
38 | 38 | mime_types = { |
39 | 39 | 'txt': 'text/plain', |
40 | 40 | 'css': 'text/css', |
43 | 43 | 'jpg': 'image/jpeg', |
44 | 44 | 'gif': 'image/gif', |
45 | 45 | 'svg': 'image/svg+xml', |
46 | 'ico': 'image/x-icon', | |
46 | 47 | } |
47 | 48 | # A list of files which will always be served regardless of access control settings |
48 | 49 | file_whitelist = ['style.css', 'logo.svg', 'logo.png', 'logo.gif', 'logo.jpg', 'favicon.png', 'favicon.ico'] |