diff options
author | Jerry Flood <jf9860@att.com> | 2017-10-09 16:33:00 -0400 |
---|---|---|
committer | Jerry Flood <jf9860@att.com> | 2017-10-09 16:33:17 -0400 |
commit | d750315fb5b707935f618b4768b21c6412f02941 (patch) | |
tree | 8ce85f939e5d3cfc66c962ebbcec220284476622 /docker | |
parent | 6bd1afa0fbc98c75cd4e0935fc04048a97f94118 (diff) |
Add latest heat templates for vFW and vLB
Issue: TEST-63
Change-Id: Id3f1a87f89306b4a1c23677fec1c4e39940dfa9c
Signed-off-by: Jerry Flood <jf9860@att.com>
Diffstat (limited to 'docker')
-rw-r--r-- | docker/lighttpd.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docker/lighttpd.conf b/docker/lighttpd.conf index ac92070d..024a259c 100644 --- a/docker/lighttpd.conf +++ b/docker/lighttpd.conf @@ -7,6 +7,11 @@ server.groupname = "www-data" dir-listing.activate = "disable" +alias.url = ( "/logs/" => "/share/logs/" ) +$HTTP["url"] =~ "^/logs/" { + dir-listing.activate = "enable" +} + mimetype.assign = ( ".html" => "text/html" ) @@ -15,6 +20,7 @@ static-file.exclude-extensions = ( ".fcgi", ".php", ".rb", "~", ".inc", ".cgi" ) index-file.names = ( "index.html" ) server.modules += ( "mod_auth" ) +server.modules += ( "mod_alias" ) auth.debug = 2 auth.backend = "plain" auth.backend.plain.userfile = "/etc/lighttpd/authorization" |