SSL for Web Interface
SSL for web interface:
yum install mod_ssl openssl
After installing mod_ssl and openssl, you may need to set "SSLEngine off" in the section of /etc/httpd/conf.d/ssl.conf.
Afterwards, add the following to the HylaFAX Enterprise Web Interface's VirtualHost configuration in /etc/httpd/conf.d/fax.conf:
NameVirtualHost *:443SSLEngine onSSLCertificateFile /etc/pki/tls/certs/fax.example.edu.crtSSLCertificateKeyFile /etc/pki/tls/private/fax.example.edu-private.keySSLCertificateChainFile /etc/pki/tls/certs/fax.example.edu.ca-bundleDocumentRoot /var/www/fax/appServerName fax.example.eduErrorLog logs/fax-ssl-error_logCustomLog logs/fax-ssl-access_log common# PHP OPTIONSphp_admin_value file_uploads 1php_admin_value upload_max_filesize 40Mphp_admin_value post_max_size 40M
Of course you'll want to update the paths to your SSL certificates and the ServerName.