We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 218e79d commit 2068d9eCopy full SHA for 2068d9e
docs/release-notes/version-4.6.5.rst
@@ -14,6 +14,9 @@ Bugs Fixed
14
``--mount-point``, the static files in the document root outside of the
15
mount point for the WSGI application would no longer be accessible.
16
17
+* If no system mime types file can be found, fall back to ``/dev/null``
18
+ so that Apache can still at least start up.
19
+
20
Features Changed
21
----------------
22
src/server/__init__.py
@@ -106,7 +106,7 @@ def find_mimetypes():
106
return name
107
break
108
else:
109
- return name
+ return '/dev/null'
110
111
APACHE_GENERAL_CONFIG = """
112
<IfModule !version_module>
0 commit comments