This file is indexed.

/etc/gforge/httpd.conf.d/plugin-scmsvn.inc is in gforge-web-apache2 5.1.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
<Location /svn>
  <IfModule dav_svn>
  DAV svn
  SVNParentPath /var/lib/gforge/chroot/scmrepos/svn
  
  # how to authenticate a user
  AuthzSVNAccessFile /var/lib/gforge/svnroot-access
  AuthType Basic
  AuthName "Document repository"
  AuthUserFile /var/lib/gforge/svnroot-authfile
  SVNIndexXSLT "/svnindex.xsl"
  </IfModule>
  
  # only authenticated users may access the repository
  Require valid-user
</Location>