1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Debian QA Group <packages@qa.debian.org>
Date: Fri, 12 Jul 2019 01:06:20 +0000
Subject: Change the default document root to /var/www/html
===================================================================
---
mini_httpd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: staging-final/mini_httpd.c
===================================================================
--- staging-final.orig/mini_httpd.c 2023-12-11 22:44:04.521504473 +0200
+++ staging-final/mini_httpd.c 2023-12-11 22:46:05.217227507 +0200
@@ -1150,7 +1150,7 @@
int r, file_len, i;
const char* index_names[] = {
"index.html", "index.htm", "index.xhtml", "index.xht", "Default.htm",
- "index.cgi" };
+ "index.cgi", "index.mini-httpd.html" };
/* Set up the timeout for reading. */
#ifdef HAVE_SIGSET
|