diff options
author | Arun Isaac | 2025-03-29 22:27:11 +0000 |
---|---|---|
committer | Arun Isaac | 2025-03-29 22:27:11 +0000 |
commit | 8dbf24a4ae052d0b5a7a200141bbbc40f06a84e2 (patch) | |
tree | cf38997319fbd53fdaeb2bafb7cdc739e7bfe659 /ennum.el | |
parent | 753c5a754e3b1f3db6d210d8f29874bf16e93e5a (diff) | |
download | ennum-8dbf24a4ae052d0b5a7a200141bbbc40f06a84e2.tar.gz ennum-8dbf24a4ae052d0b5a7a200141bbbc40f06a84e2.tar.lz ennum-8dbf24a4ae052d0b5a7a200141bbbc40f06a84e2.zip |
Inhibit file name handlers when serving static files.
* ennum.el (ennum-server-start)[httpd/]: Inhibit file name handlers
when serving static files.
Diffstat (limited to 'ennum.el')
-rw-r--r-- | ennum.el | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -862,7 +862,13 @@ as keys. Keys are compared using `equal'." (httpd-error proc 404)) ;; If the requested file was found, serve it. ((= (httpd-status file-path) 200) - (httpd-serve-root proc httpd-root uri-path request)) + ;; Opening the file for serving can trigger file name + ;; handlers. Inhibit that. + (let ((inhibit-file-name-operation 'insert-file-contents) + (inhibit-file-name-handlers + (append ennum-inhibit-file-name-handlers + inhibit-file-name-handlers))) + (httpd-serve-root proc httpd-root uri-path request))) ;; Perhaps, this is a post or other HTML file that is being ;; requested. Try serving a file with a .html extension ;; appended. |