From 6bc9c4deb90e8daa228d792b23a3e61b7bebdb78 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sat, 26 Sep 2020 15:51:28 -0400 Subject: Implement autoindex option --- include/config.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/config.h') diff --git a/include/config.h b/include/config.h index 83253f7..1a0b17c 100644 --- a/include/config.h +++ b/include/config.h @@ -2,6 +2,7 @@ #define GMNISRV_CONFIG #include #include +#include struct gmnisrv_tls { char *store; @@ -13,8 +14,12 @@ struct gmnisrv_tls { struct gmnisrv_host { char *hostname; char *root; + char *index; + bool autoindex; + X509 *x509; EVP_PKEY *pkey; + struct gmnisrv_host *next; }; -- cgit v1.2.3