Subversion Repositories Tewi

Rev

Rev 132 | Rev 168 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 132 Rev 161
Line 1... Line 1...
1
/* $Id: genconf.c 132 2024-09-23 10:32:36Z nishi $ */
1
/* $Id: genconf.c 161 2024-09-25 13:35:04Z nishi $ */
2
 
2
 
3
#include "../config.h"
3
#include "../config.h"
4
 
4
 
5
#include <stdio.h>
5
#include <stdio.h>
6
 
6
 
Line 40... Line 40...
40
	printf("DirectoryIndex index.html\n");
40
	printf("DirectoryIndex index.html\n");
41
	printf("\n");
41
	printf("\n");
42
	printf("Readme README\n");
42
	printf("Readme README\n");
43
	printf("\n");
43
	printf("\n");
44
	printf("DocumentRoot %s/www\n", argv[1]);
44
	printf("DocumentRoot %s/www\n", argv[1]);
45
	printf("\n");
-
 
46
	printf("BeginDirectory %s/www\n", argv[1]);
45
	printf("BeginDirectory %s/www\n", argv[1]);
47
	printf("\tAllow all\n");
46
	printf("	Allow all\n");
48
	printf("EndDirectory\n", argv[1]);
47
	printf("EndDirectory\n", argv[1]);
49
}
48
}