From 1ba8bf7a96b1178e82bb5f51d23f4e32837be9ed Mon Sep 17 00:00:00 2001 From: Sylvain Desbureaux Date: Wed, 9 Dec 2020 08:20:25 +0100 Subject: Remove code on master branch As code has been moved to main repo, we remove the code here and add a README explaining Issue-ID: OOM-2513 Signed-off-by: Sylvain Desbureaux Change-Id: I80693e7f5c6c18bece7088eb29e2d17566f3993f --- resources/config/lighttpd/lighttpd.conf | 57 --------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 resources/config/lighttpd/lighttpd.conf (limited to 'resources/config/lighttpd/lighttpd.conf') diff --git a/resources/config/lighttpd/lighttpd.conf b/resources/config/lighttpd/lighttpd.conf deleted file mode 100644 index 6c781a2..0000000 --- a/resources/config/lighttpd/lighttpd.conf +++ /dev/null @@ -1,57 +0,0 @@ -server.document-root = "/var/opt/ONAP/html/" - -server.port = 88 - -server.username = "www-data" -server.groupname = "www-data" -server.errorlog = "/var/log/lighttpd/error.log" -accesslog.filename = "/var/log/lighttpd/access.log" - - -$SERVER["socket"] == ":443" { - ssl.engine = "enable" - ssl.pemfile = "/etc/lighttpd/ssl/onap-robot.onap.pem" - # ssl.ca-file = "/etc/lighttpd/ssl/CA_issuing.crt" - server.name = "robot-onap.onap.org" - #server.document-root = "/var/opt/ONAP/html/" - #server.errorlog = "/var/log/lighttpd/robot_onap.onap.org.error.log" - #accesslog.filename = "/var/log/lighttpd/robot_onap.onap.org.access.log" -} - - - -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" ) -server.modules += ( "mod_accesslog" ) -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") -- cgit 1.2.3-korg