diff options
author | Daniel Rose <dr695h@att.com> | 2017-10-10 16:55:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-10-10 16:55:50 +0000 |
commit | 26c6fc25f20d90e87f08f443058fc2356fe8bea7 (patch) | |
tree | 8dd50876ac53378a5e3ab8bebbb15836f8609b44 /docker | |
parent | 10cbdbce0ffd70207201cdcf085d9129aa86741e (diff) | |
parent | d750315fb5b707935f618b4768b21c6412f02941 (diff) |
Merge "Add latest heat templates for vFW and vLB"
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" |