Created
January 27, 2011 06:02
-
-
Save bradleybeddoes/798139 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <VirtualHost 1.1.1.1:443> | |
| ServerName fr.host.edu.au:443 | |
| DocumentRoot /var/www/hosts/fr.host.edu.au | |
| Include include/ssl-defaults.conf | |
| SSLCertificateFile ... | |
| SSLCertificateKeyFile ... | |
| SSLCertificateChainFile ... | |
| # Federation Registry | |
| ProxyPass /federationregistry ajp://localhost:8009/federationregistry retry=2 | |
| <Location /federationregistry> | |
| AuthType shibboleth | |
| ShibRequireSession Off | |
| ShibUseHeaders On | |
| require shibboleth | |
| # Insert filter | |
| SetOutputFilter DEFLATE | |
| # Netscape 4.x has some problems... | |
| BrowserMatch ^Mozilla/4 gzip-only-text/html | |
| # Netscape 4.06-4.08 have some more problems | |
| BrowserMatch ^Mozilla/4\.0[678] no-gzip | |
| # MSIE masquerades as Netscape, but it is fine | |
| BrowserMatch \bMSIE !no-gzip !gzip-only-text/html | |
| # Don't compress images | |
| SetEnvIfNoCase Request_URI \ | |
| \.(?:gif|jpe?g|png)$ no-gzip dont-vary | |
| # Make sure proxies don't deliver the wrong content | |
| Header append Vary User-Agent env=!dont-vary | |
| </Location> | |
| </VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment