#NameVirtualHost 192.168.32.110:80

<VirtualHost *:80>
	ServerAdmin webmaster@localhost
	DocumentRoot /opt/astra-build/logs
	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>

	<Directory /opt/astra-build/logs>
		Options Indexes FollowSymLinks MultiViews
		AllowOverride None
		Order allow,deny
		allow from all
	</Directory>

	ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
	<Directory "/usr/lib/cgi-bin">
		AllowOverride None
		Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
		Order allow,deny
		Allow from all
	</Directory>

	ErrorLog /var/log/apache2/error.log

	# Possible values include: debug, info, notice, warn, error, crit,
	# alert, emerg.
	LogLevel warn

	CustomLog /var/log/apache2/access.log combined

### Source repository ###

    Alias /src "/opt/astra-build/repos/mixed"
    <Directory "/opt/astra-build/repos/mixed/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.1/255.255.255.255 ::1/128
    </Directory>

### Binary working repository ###

    Alias /bin "/opt/astra-build/repos/bin"
    <Directory "/opt/astra-build/repos/bin/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
    </Directory>

### Binary snapshot repository ###

    Alias /bin-snapshot "/opt/astra-build/repos/bin-snapshot"
    <Directory "/opt/astra-build/repos/bin-snapshot/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
    </Directory>


### MOUNTED ISO ###

    Alias /mounted-iso "/opt/astra-build/repos/iso/"
    <Directory "/opt/astra-build/repos/iso">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
    </Directory>

### ISO Repository ###

    Alias /iso-repo "/opt/astra-build/repos/iso-repo/"
    <Directory "/opt/astra-build/repos/iso-repo">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
    </Directory>

</VirtualHost>
