blob: ac92070de01c3f376b1f72efb7e104f641af3a14 (
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
|
server.document-root = "/var/opt/OpenECOMP_ETE/html/"
server.port = 88
server.username = "www-data"
server.groupname = "www-data"
dir-listing.activate = "disable"
mimetype.assign = (
".html" => "text/html"
)
static-file.exclude-extensions = ( ".fcgi", ".php", ".rb", "~", ".inc", ".cgi" )
index-file.names = ( "index.html" )
server.modules += ( "mod_auth" )
auth.debug = 2
auth.backend = "plain"
auth.backend.plain.userfile = "/etc/lighttpd/authorization"
auth.require = ( "/" =>
(
"method" => "basic",
"realm" => "Password protected area",
"require" => "valid-user"
)
)
|