Sha256: 86057432dd7315dd42d383d1b7acec2a63f07cb2cb1c74f311276a099e5991ef
Contents?: true
Size: 1.11 KB
Versions: 5
Compression:
Stored size: 1.11 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 <%= install_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 <%= @APP_CONFIG[:urls][:svn] %>> DAV svn SVNParentPath <%= @APP_CONFIG[:dirs][:svn] %>/ SVNListParentPath On SVNAutoversioning On SVNReposName '<%= server_name %>' </location> Include <%= locations_dir %>/* </virtualhost>
Version data entries
5 entries across 5 versions & 1 rubygems