Update comment in logs.vhost
Update the comment regarding htmlify to say what really happens. Matching all .html.gz files isn't done since it messes with testr results. Also fix the line wrap to 80cols Change-Id: I7aaa50610f1ca5418d3d4a3bbe21de58ad8036b4
This commit is contained in:
parent
aace25f971
commit
21a11326f4
@ -58,11 +58,14 @@ NameVirtualHost <%= vhost_name %>:<%= port %>
|
|||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
RewriteEngine On
|
RewriteEngine On
|
||||||
# rewrite all txt.gz & html.gz files to map to our internal htmlify wsgi app
|
# rewrite txt.gz & console.html[.gz] files to map to our internal htmlify
|
||||||
# PT, Pass-through: to come back around and get picked up by the WSGIScriptAlias
|
# wsgi app
|
||||||
# NS, No-subrequest: on coming back through, mod-autoindex may have added index.html
|
# PT, Pass-through: to come back around and get picked up by the
|
||||||
# which would match the !-f condition. We therefore ensure the
|
# WSGIScriptAlias
|
||||||
# rewrite doesn't trigger by disallowing subrequests.
|
# NS, No-subrequest: on coming back through, mod-autoindex may have added
|
||||||
|
# index.html which would match the !-f condition. We
|
||||||
|
# therefore ensure the rewrite doesn't trigger by
|
||||||
|
# disallowing subrequests.
|
||||||
RewriteRule ^/(.*\.txt\.gz)$ /htmlify/$1 [QSA,L,PT,NS]
|
RewriteRule ^/(.*\.txt\.gz)$ /htmlify/$1 [QSA,L,PT,NS]
|
||||||
RewriteRule ^/(.*console\.html(\.gz)?)$ /htmlify/$1 [QSA,L,PT,NS]
|
RewriteRule ^/(.*console\.html(\.gz)?)$ /htmlify/$1 [QSA,L,PT,NS]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user