Skip to content
This repository was archived by the owner on Aug 13, 2022. It is now read-only.

python -m http.server leads to a SecurityError due to bad content types #35

Closed
aokasumi opened this issue Mar 19, 2020 · 1 comment
Closed

Comments

@aokasumi
Copy link

Using python -m http.server 8001 with Python 3.7 on Windows 10 to start a simple server as described will result in the following message printed on to the console in Firefox 74.0:
Registration failed with SecurityError: The operation is insecure.

Using Chrome, you can get the following additional information:
Registration failed with SecurityError: Failed to register a ServiceWorker for scope ('http://localhost:8001/sw-test/') with script ('http://localhost:8001/sw-test/sw.js'): The script has an unsupported MIME type ('text/plain').

It seems like the Python http.server module is unable to use the correct mimetypes in the HTTP response for JavaScript files. Also, the content types of the other JavaScript files are text/plain as well in the HTTP response, as for example in the response of app.js:

HTTP/1.0 200 OK
Server: SimpleHTTP/0.6 Python/3.7.4
Date: Thu, 19 Mar 2020 19:27:39 GMT
Content-type: text/plain
Content-Length: 2143
Last-Modified: Thu, 19 Mar 2020 19:24:15 GMT

The content types of the JPEG images seem to be okay.

If you experience the same problem, starting a server using the Python script at https://gist.github.com/HaiyangXu/ec88cbdce3cdbac7b8d5 works for me.

@qiufeihong2018
Copy link

Can you use 'python -m SimpleHTTPServer 8001'? @aokasumi

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants