This file is indexed.

/etc/fusionforge/httpd.conf.d/20-vhosts-scm.conf is in fusionforge-web 6.0.5-2ubuntu1.

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
17
18
19
20
21
22
23
24
25
26
27
28
#
# SCM host
#

# Include macros first
IncludeOptional ${FF__core__config_path}/httpd.conf.d/vhost-scm-macros*.inc

# Used if you have a scm.$web_host domain
# (serving SCM repos without the main web interface installed)

<VirtualHost *:80>
  Include ${FF__core__config_path}/httpd.conf.d/vhost-scm.inc
  Include ${FF__core__config_path}/httpd.conf.d/block-trace.inc
  Include ${FF__core__config_path}/httpd.conf.d/log.inc
  Include ${FF__core__config_path}/httpd.conf.d/ssl-off.inc
</VirtualHost>
<VirtualHost *:443>
  Include ${FF__core__config_path}/httpd.conf.d/vhost-scm.inc
  Include ${FF__core__config_path}/httpd.conf.d/block-trace.inc
  Include ${FF__core__config_path}/httpd.conf.d/log.inc
  Include ${FF__core__config_path}/httpd.conf.d/ssl-on-scm.inc
</VirtualHost>

# Limit UID/GID range to FusionForge (not system) users
# cf. common/include/system/pgsql.class.php
# Not possible for now since we're running the main UI as 'www-data'
#LimitUIDRange 20000 99999
#LimitGIDRange 10000 99999