aboutsummaryrefslogtreecommitdiffstats
path: root/resources/config/lighttpd/lighttpd.conf
diff options
context:
space:
mode:
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>2020-12-09 08:20:25 +0100
committerSylvain Desbureaux <sylvain.desbureaux@orange.com>2020-12-09 08:22:17 +0100
commit1ba8bf7a96b1178e82bb5f51d23f4e32837be9ed (patch)
tree5eb73f6f70e552f0823a57374f670dc7468f7428 /resources/config/lighttpd/lighttpd.conf
parent85b5af5058bbda19b557add185d917f60c2188ee (diff)
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 <sylvain.desbureaux@orange.com> Change-Id: I80693e7f5c6c18bece7088eb29e2d17566f3993f
Diffstat (limited to 'resources/config/lighttpd/lighttpd.conf')
-rw-r--r--resources/config/lighttpd/lighttpd.conf57
1 files changed, 0 insertions, 57 deletions
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")