blob: 70a63e962e6c03b8b587f34f6991b843e3226ddf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# This configuration file allows cobbler data
# to be accessed over HTTP.
AliasMatch ^/cobbler(/.*)?$ "/cobbler_webdir$1"
AliasMatch ^/cobbler_track(/.*)?$ "/cobbler_webdir$1"
AliasMatch ^/cblr(/.*)?$ "/cobbler_webdir$1"
<Directory "/cobbler_webdir">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
|