/etc/fusionforge/httpd.conf.d/ssl-on.inc 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 | # Not using IfModule: the name changes between distros
# and user can disable SSL in ssl-on.inc
#<IfModule mod_ssl.c>
SSLEngine on
SSLCertificateFile ${FF__core__config_path}/ssl-cert.pem
SSLCertificateKeyFile ${FF__core__config_path}/ssl-cert.key
<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>
|