Attention: All pages of this wiki depend on the pages that come before it, in order as they are listed on the Main Page. Please check for Dependencies.
Please also look at What You Need to Know Before Using This Wiki

/etc/apache2/sites-available/rt.computerisms.com.conf: Difference between revisions

From COCNM
Jump to navigation Jump to search
m (1 revision)
 
(No difference)

Latest revision as of 02:19, 19 September 2013

<VirtualHost 192.168.26.10:80>
  	ServerName 		rt.computerisms.com
        ServerAdmin 		bob.miller@computerisms.com
        RewriteEngine   	on
        RewriteCond 		%{HTTPS} !=on
        RewriteRule 		^(.*) https://%{SERVER_NAME}$1 [R,L]
	ErrorLog 		/var/log/apache2/rt.computerisms.com/error.log
	LogLevel 		error
	CustomLog 		/var/log/apache2/rt.computerisms.com/access.log combined
	ServerSignature 	Off
</VirtualHost>
<VirtualHost 192.168.26.10:443>
	SetEnvIf 		User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
	SSLEngine 		on
	SSLCertificateFile   	/var/CA/computerisms.com/rt.computerisms.com/rt.computerisms.com.pem
	SSLCertificateKeyFile 	/var/CA/computerisms.com/rt.computerisms.com/rt.computerisms.com.nopw.key
	SSLCACertificateFile	/var/CA/computerisms.com/CA/Computerisms.Certificate.Authority
        SSLProtocol             -All +SSLv3 +TLSv1
	AssignUserID    	rt				rt
        MaxClientsVHost 	1000
        NiceValue       	10
	ServerName 		rt.computerisms.com
	ServerAdmin		bob.miller@computerisms.com
	AddDefaultCharset 	UTF-8
	Alias 			/NoAuth/images/ 		/usr/local/rt/share/html/NoAuth/images/
	ScriptAlias 		/ 				/usr/local/rt/sbin/rt-server.fcgi/
	DocumentRoot 		/usr/local/rt/share/html
	<Location />
		Require		all				granted
		SetHandler 	modperl
		PerlResponseHandler 				Plack::Handler::Apache2
		PerlSetVar 	psgi_app 			/usr/local/rt/sbin/rt-server
	</Location>
	<Perl>
		use 		Plack::Handler::Apache2;
		Plack::Handler::Apache2->preload("/usr/local/rt/sbin/rt-server");
	</Perl>
	ErrorLog 		/var/log/apache2/rt.computerisms.com/error.log
	CustomLog 		/var/log/apache2/rt.computerisms.com/access.log combined
	LogLevel 		error
	ServerSignature 	Off
</VirtualHost>