summaryrefslogtreecommitdiffstats
path: root/scripts/httpd-configure.sh
blob: 0cd573159f5b9bfffaa875144ce8c9bf03c76b6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh -x

cat > /etc/httpd/conf.d/tet.conf << EOF
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
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>
EOF