Created
June 13, 2011 18:18
-
-
Save kirkconnell/1023353 to your computer and use it in GitHub Desktop.
last lines of my httpd.conf
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
| # Language settings | |
| Include /private/etc/apache2/extra/httpd-languages.conf | |
| # User home directories | |
| Include /private/etc/apache2/extra/httpd-userdir.conf | |
| # Real-time info on requests and configuration | |
| #Include /private/etc/apache2/extra/httpd-info.conf | |
| # Virtual hosts | |
| Include /private/etc/apache2/extra/httpd-vhosts.conf | |
| # UNICORN_RAILS hosts | |
| Include /private/etc/apache2/unicorn_vhosts/*.conf | |
| # Local access to the Apache HTTP Server Manual | |
| Include /private/etc/apache2/extra/httpd-manual.conf | |
| # Distributed authoring and versioning (WebDAV) | |
| #Include /private/etc/apache2/extra/httpd-dav.conf | |
| # Various default settings | |
| #Include /private/etc/apache2/extra/httpd-default.conf | |
| # Secure (SSL/TLS) connections | |
| #Include /private/etc/apache2/extra/httpd-ssl.conf | |
| # | |
| # Note: The following must must be present to support | |
| # starting without SSL on platforms with no /dev/random equivalent | |
| # but a statically compiled-in mod_ssl. | |
| # | |
| <IfModule ssl_module> | |
| SSLRandomSeed startup builtin | |
| SSLRandomSeed connect builtin | |
| </IfModule> | |
| Include /private/etc/apache2/other/*.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment