summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/httpd-configure.sh11
-rwxr-xr-xscripts/tet-run.sh4
2 files changed, 11 insertions, 4 deletions
diff --git a/scripts/httpd-configure.sh b/scripts/httpd-configure.sh
index b7e4744..0cd5731 100755
--- a/scripts/httpd-configure.sh
+++ b/scripts/httpd-configure.sh
@@ -1,7 +1,16 @@
#!/bin/sh -x
cat > /etc/httpd/conf.d/tet.conf << EOF
-Alias /tet/ "/root/CS/tet/"
+Alias /pki/repo/ "/root/CS/repo/"
+
+<Directory "/root/CS/repo">
+ Options Indexes MultiViews FollowSymLinks
+ AllowOverride None
+ Order allow,deny
+ Allow from all
+</Directory>
+
+Alias /pki/test/ "/root/CS/tet/"
<Directory "/root/CS/tet">
Options Indexes MultiViews FollowSymLinks
diff --git a/scripts/tet-run.sh b/scripts/tet-run.sh
index c618a69..6d6b8e5 100755
--- a/scripts/tet-run.sh
+++ b/scripts/tet-run.sh
@@ -4,6 +4,4 @@ SRC_DIR=`cd ../.. ; pwd`
TET_DIR=$SRC_DIR/tet
cd $TET_DIR
-mkdir -p results
-
-testframework/utils/tet_shared/launch.sh $TET_DIR/testframework 2>&1 | tee results/tet.log
+testframework/utils/tet_shared/launch.sh $TET_DIR 2>&1 | tee tet.log