Lines Matching defs:domain
885 /* fully qualified, i.e. doesn't have a domain name appended. Some proxy */
887 /* domain in this case. I think it is better to redirect to a FQDN, since */
889 /* The "ProxyDomain" directive determines what domain will be appended */
890 static int proxy_needsdomain(request_rec *r, const char *url, const char *domain)
900 if (strchr(r->parsed_uri.hostname, '.') != NULL /* has domain, or IPv4 literal */
907 /* Reassemble the request, but insert the domain after the host name */
908 /* Note that the domain name always starts with a dot */
910 domain, NULL);
1053 /* If the host doesn't have a domain name, add one and redirect. */
1054 if (conf->domain != NULL) {
1055 rc = proxy_needsdomain(r, uri, conf->domain);
1259 ps->domain = NULL;
1416 ps->domain = (overrides->domain == NULL) ? base->domain : overrides->domain;
1955 "Parsed domain %s", New->name);
1982 return "ProxyDomain: domain name must start with a dot.";
1984 psf->domain = arg;
2570 "The default intranet domain name (in absence of a domain in the URL)"),
2669 ap_proxy_strmatch_domain = apr_strmatch_precompile(pconf, "domain=", 0);