Subversion Repositories Tewi

Rev

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

Rev 161 Rev 168
Line 1... Line 1...
1
/* $Id: genconf.c 161 2024-09-25 13:35:04Z nishi $ */
1
/* $Id: genconf.c 168 2024-09-26 20:24: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 43... Line 43...
43
	printf("\n");
43
	printf("\n");
44
	printf("DocumentRoot %s/www\n", argv[1]);
44
	printf("DocumentRoot %s/www\n", argv[1]);
45
	printf("BeginDirectory %s/www\n", argv[1]);
45
	printf("BeginDirectory %s/www\n", argv[1]);
46
	printf("	Allow all\n");
46
	printf("	Allow all\n");
47
	printf("EndDirectory\n", argv[1]);
47
	printf("EndDirectory\n", argv[1]);
-
 
48
	return 0;
48
}
49
}