Sha256: df16b5847096bcb399159d92ed8d88227132a4df824ad5654bf28b4876b61d93

Contents?: true

Size: 1.08 KB

Versions: 8

Compression:

Stored size: 1.08 KB

Contents

<virtualhost *>
	ServerAdmin webmaster@localhost
	ServerName <%= server_hostname %>
	DocumentRoot <%= docs_dir %>
	ErrorLog <%= log_dir %>/error.<%= server_hostname %>.log
	CustomLog <%= log_dir %>/access.<%= server_hostname %>.log combined
	LogLevel error

	RewriteEngine On
	RewriteRule ^/$ http://<%= server_hostname %>/<%= default_client.downcase %>/<%= default_project.downcase %>
	RewriteRule ^/index*$ http://<%= server_hostname %>/<%= default_client.downcase %>/<%= default_project.downcase %>

	<location />
		AuthType Basic
		AuthName '<%= server_name %>'
		AuthUserFile <%= auth_dir %>/.passwd
		Require valid-user
		AuthBasicProvider file
		<% if enable_ldap then %>
		#AuthBasicProvider file ldap
		#AuthLDAPBindDN '<%= ldap_bind_dn %>'
		#AuthLDAPBindPassword '<%= ldap_bind_password %>'
		#AuthLDAPURL '<%= ldap_url %>'
		#AuthzLDAPAuthoritative off
		<% end %>
	</location>

	<location <%= svn_url %>>
		DAV svn
		SVNParentPath <%= svn_dir %>/
		SVNListParentPath On
		SVNAutoversioning On
		SVNReposName '<%= server_name %>'
	</location>

	Include <%= locations_dir %>/*

</virtualhost>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ktec-subtrac-0.1.50 lib/subtrac/apache/vhost.conf.erb
ktec-subtrac-0.1.51 lib/subtrac/apache/vhost.conf.erb
ktec-subtrac-0.1.52 lib/subtrac/apache/vhost.conf.erb
ktec-subtrac-0.1.54 lib/subtrac/apache/vhost.conf.erb
ktec-subtrac-0.1.55 lib/subtrac/apache/vhost.conf.erb
ktec-subtrac-0.1.56 lib/subtrac/apache/vhost.conf.erb
ktec-subtrac-0.1.57 lib/subtrac/apache/vhost.conf.erb
ktec-subtrac-0.1.58 lib/subtrac/apache/vhost.conf.erb