blob: ac92070de01c3f376b1f72efb7e104f641af3a14 [file] [log] [blame]
DR695Hccff30b2017-02-17 18:44:24 -05001server.document-root = "/var/opt/OpenECOMP_ETE/html/"
2
3server.port = 88
4
5server.username = "www-data"
6server.groupname = "www-data"
7
8dir-listing.activate = "disable"
9
10mimetype.assign = (
11 ".html" => "text/html"
12)
13
14static-file.exclude-extensions = ( ".fcgi", ".php", ".rb", "~", ".inc", ".cgi" )
15index-file.names = ( "index.html" )
16
Jerry Flood775f59f2017-04-01 06:55:19 -040017server.modules += ( "mod_auth" )
18auth.debug = 2
19auth.backend = "plain"
20auth.backend.plain.userfile = "/etc/lighttpd/authorization"
21auth.require = ( "/" =>
22(
23"method" => "basic",
24"realm" => "Password protected area",
25"require" => "valid-user"
26)
27)