-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Move SSL to the route - Drop extra httpd modules - Don't generate certificates - No need to pass the MANAGEIQ_SERVICE_NAME to the httpd container
- Loading branch information
Showing
5 changed files
with
52 additions
and
57 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
## ManageIQ HTTP Virtual Host Context | ||
|
||
# Timeout: The number of seconds before receives and sends time out. | ||
Timeout 120 | ||
|
||
# HTTP Start-up error log | ||
ErrorLog /var/www/miq/vmdb/log/apache/miq_apache.log | ||
|
||
RewriteEngine On | ||
Options SymLinksIfOwnerMatch | ||
|
||
<VirtualHost *:80> | ||
DocumentRoot /var/www/miq/vmdb/public | ||
Include conf.d/manageiq-redirects-ui | ||
Include conf.d/manageiq-redirects-ws | ||
Include conf.d/manageiq-redirects-websocket | ||
ProxyPreserveHost on | ||
<Location /assets/> | ||
Header unset ETag | ||
FileETag None | ||
ExpiresActive On | ||
ExpiresDefault "access plus 1 year" | ||
</Location> | ||
<Location /proxy_pages/> | ||
ErrorDocument 403 /error/noindex.html | ||
ErrorDocument 404 /error/noindex.html | ||
</Location> | ||
</VirtualHost> |
This file contains 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
This file contains 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
This file contains 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