34 lines
951 B
Text
34 lines
951 B
Text
Listen 8443
|
|
<VirtualHost 10.5.126.30:8443 10.5.126.25:8443 10.5.126.26:8443>
|
|
# Load this module locally here.
|
|
LoadModule suexec_module modules/mod_suexec.so
|
|
|
|
ServerAdmin admin@fedoraproject.org
|
|
DocumentRoot /var/www/totpcgi
|
|
ServerName fas-all.phx2.fedoraproject.org:8443
|
|
ErrorLog /var/log/httpd/totpcgi-error.log
|
|
SuexecUserGroup totpcgi totpcgi
|
|
|
|
# Use this for totp.cgi
|
|
AddHandler cgi-script .cgi
|
|
DirectoryIndex index.cgi
|
|
|
|
# Or use this for totp.fcgi:
|
|
#AddHandler fcgid-script .fcgi
|
|
#DirectoryIndex index.fcgi
|
|
|
|
SSLEngine on
|
|
SSLCertificateFile /etc/pki/totpcgi/totpcgi-server.crt
|
|
SSLCertificateKeyFile /etc/pki/totpcgi/totpcgi-server.key
|
|
SSLCACertificateFile /etc/pki/totpcgi/totpcgi-ca.crt
|
|
|
|
SSLVerifyClient require
|
|
SSLVerifyDepth 10
|
|
|
|
CustomLog /var/log/httpd/totpcgi-ssl-request-log \
|
|
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
|
|
|
|
<Directory "/var/www/totpcgi">
|
|
Options ExecCGI
|
|
</Directory>
|
|
</VirtualHost>
|