Lines Matching defs:path
126 // socket path.
134 // descriptor. <PATH> is a path to UNIX domain socket.
185 // IP address if TCP socket. Otherwise, UNIX domain socket path.
188 // true if UNIX domain socket path
528 LOG(ERROR) << "Could not resolve the executable path";
773 LOG(FATAL) << "UNIX domain socket path " << faddr.host << " is too long > "
778 // copy path including terminal NULL
781 // unlink (remove) already existing UNIX domain socket path
1113 auto path = endfd + 1;
1114 if (strlen(path) == 0) {
1115 LOG(WARN) << "Empty UNIX domain socket path (fd=" << fd << ")";
1122 << ", path=" << path;
1126 addr.host = make_string_ref(config->balloc, StringRef{path});
1905 // Returns true if regular file or symbolic link |path| exists.
1906 bool conf_exists(const char *path) {
1908 int rv = stat(path, &buf);
2215 Set path to server's private key. Required unless
2217 <CERT> Set path to server's certificate. Required unless
2219 make OCSP stapling work, this must be an absolute path.
2229 domain socket can be specified by prefixing path name
2236 consists of path, host + path or just host. The path
2238 all request path in its subtree. To deal with the
2240 path which ends with "/" also matches the request path
2241 which only lacks trailing '/' (e.g., path "/foo/"
2242 matches request path "/foo"). If it does not end with
2243 "/", it performs exact match against the request path.
2251 specially. It does not have path, and we don't allow
2252 empty path. To workaround this, we assume that CONNECT
2253 method has "/" as path.
2256 just path. Then, longer patterns take precedence over
2267 If path part ends with "*", it is treated as wildcard
2268 path. The wildcard path behaves differently from the
2269 normal path. For normal path, match is made around the
2270 boundary of path component separator,"/". On the other
2271 hand, the wildcard path does not take into account the
2272 path component separator. All paths which include the
2273 wildcard path without last "*" as prefix, and are
2274 strictly longer than wildcard path without last "*" are
2284 pattern, request host and path. For host part, they are
2285 converted to lower case. For path part, percent-encoded
2292 path "/httpbin/get", but does not match the request host
2293 "nghttp2.org" and the request path "/index.html".
2372 "affinity-cookie-path=<PATH>" can be used to specify a
2373 path which cookie is applied. The optional
2421 "mruby=<PATH>" parameter specifies a path to mruby
2424 have the same mruby path.
2478 UNIX domain socket can be specified by prefixing path
2769 Set path to trusted CA certificate file. It is used in
2791 <CERTPATH> must be absolute path.
2796 "sct-dir=<DIR>" specifies the path to directory which
2939 absolute path.
3172 Set path to write access log. To reopen file, send USR1
3220 * $path: Request path including query. For CONNECT
3222 * $path_without_query: $path up to the first '?'
3238 Set path to write error log. To reopen file, send USR1
3366 Set file path to custom error page served when nghttpx
3449 Set path to save PID of this program.
3502 Specify a path to eBPF program file reuseport_kern.o to
3711 auto path = dumpconf.request_header_file.c_str();
3712 auto f = open_file_for_write(path);
3716 << path;
3723 if (chown(path, config->uid, config->gid) == -1) {
3726 << path << " failed: "
3733 auto path = dumpconf.response_header_file.c_str();
3734 auto f = open_file_for_write(path);
3738 << path;
3745 if (chown(path, config->uid, config->gid) == -1) {
3748 << " " << path << " failed: "