aboutsummaryrefslogtreecommitdiffstats
path: root/docker/lighttpd.conf
blob: b6fc1fb80fc5b5c7bea0099b8943d48a141e91e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
server.document-root = "/var/opt/OpenECOMP_ETE/html/"

server.port = 88

server.username = "www-data"
server.groupname = "www-data"

dir-listing.activate = "disable"

alias.url = ( "/logs/" => "/share/logs/" )
$HTTP["url"] =~ "^/logs/" {
    dir-listing.activate = "enable"
}

mimetype.assign = (
  ".log" => "text/plain",
  ".txt" => "text/plain",
  ".png" => "image/png",
  ".html" => "text/html",
  ".xml" => "text/xml"
)

static-file.exclude-extensions = ( ".fcgi", ".php", ".rb", "~", ".inc", ".cgi" )
index-file.names = ( "index.html" )

server.modules += ( "mod_auth" )
server.modules += ( "mod_alias" )
server.modules += ( "mod_compress" )
auth.debug = 2
auth.backend = "plain"
auth.backend.plain.userfile = "/etc/lighttpd/authorization"
auth.require = ( "/" =>
(
"method" => "basic",
"realm" => "Password protected area",
"require" => "valid-user"
)
)

compress.cache-dir = "/var/cache/lighttpd/compress/"
compress.filetype = ("application/x-javascript", "text/css", "text/html", "text/plain")