This file is indexed.

/etc/gforge/httpd.conf.d/ssl-really-on.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
17
18
19
20
21
22
23
<IfModule mod_ssl.c>
  SSLEngine on
  
  SSLCertificateFile /etc/gforge/ssl-cert.pem
  SSLCertificateKeyFile /etc/gforge/ssl-cert.key
  # Add extra SSL configuration (e.g. SSLCACertificatePath) here
  
  <Files ~ "\.(cgi|shtml)$">
    SSLOptions +StdEnvVars
  </Files>
  
  <Directory "/usr/lib/cgi-bin">
    SSLOptions +StdEnvVars
  </Directory>
  
  SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</IfModule>

<IfModule apache_ssl.c>
  SSLEnable
  
  SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</IfModule>