Lines Matching refs:cacrtfile
1386 char cacrtfile[1024], cakeyfile[1024]; /* CA cert files */ in _httpTLSStart() local
1388 snprintf(cacrtfile, sizeof(cacrtfile), "/etc/letsencrypt/live/%s/fullchain.pem", hostname); in _httpTLSStart()
1391 …if ((access(cacrtfile, R_OK) || access(cakeyfile, R_OK)) && (hostptr = strchr(hostname, '.')) != N… in _httpTLSStart()
1400 … snprintf(cacrtfile, sizeof(cacrtfile), "/etc/letsencrypt/live/%s/fullchain.pem", hostptr); in _httpTLSStart()
1405 if (!access(cacrtfile, R_OK) && !access(cakeyfile, R_OK)) in _httpTLSStart()
1411 strlcpy(crtfile, cacrtfile, sizeof(crtfile)); in _httpTLSStart()
1433 char cacrtfile[1024], cakeyfile[1024]; /* CA cert files */ in _httpTLSStart() local
1435 … snprintf(cacrtfile, sizeof(cacrtfile), "/etc/letsencrypt/live/%s/fullchain.pem", tls_common_name); in _httpTLSStart()
1438 …if ((access(cacrtfile, R_OK) || access(cakeyfile, R_OK)) && (hostptr = strchr(tls_common_name, '.'… in _httpTLSStart()
1447 … snprintf(cacrtfile, sizeof(cacrtfile), "/etc/letsencrypt/live/%s/fullchain.pem", hostptr); in _httpTLSStart()
1452 if (!access(cacrtfile, R_OK) && !access(cakeyfile, R_OK)) in _httpTLSStart()
1458 strlcpy(crtfile, cacrtfile, sizeof(crtfile)); in _httpTLSStart()