From 514f34144a491832db1647c84a7271120ba7e7d6 Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Tue, 24 Sep 2019 15:33:42 +0300 Subject: Static: returning 404 for Unix domain sockets. It's now similar to how attempts to access other non-regular files are handled. --- src/nxt_http_static.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/nxt_http_static.c') diff --git a/src/nxt_http_static.c b/src/nxt_http_static.c index 4679af5b..48a989cf 100644 --- a/src/nxt_http_static.c +++ b/src/nxt_http_static.c @@ -94,9 +94,20 @@ nxt_http_static_handler(nxt_task_t *task, nxt_http_request_t *r, if (nxt_slow_path(ret != NXT_OK)) { switch (f->error) { + /* + * For Unix domain sockets "errno" is set to: + * - ENXIO on Linux; + * - EOPNOTSUPP on *BSD, MacOSX, and Solaris. + */ + case NXT_ENOENT: case NXT_ENOTDIR: case NXT_ENAMETOOLONG: +#if (NXT_LINUX) + case NXT_ENXIO: +#else + case NXT_EOPNOTSUPP: +#endif level = NXT_LOG_ERR; status = NXT_HTTP_NOT_FOUND; break; -- cgit