summaryrefslogtreecommitdiffstats
path: root/kubernetes/cli/resources
diff options
context:
space:
mode:
authorefiacor <fiachra.corcoran@est.tech>2023-02-17 07:47:55 +0000
committerefiacor <fiachra.corcoran@est.tech>2023-02-17 18:59:01 +0000
commit7009bc0f98304fe90aa10549eaeeb5ae50204fbb (patch)
tree37221bd84486308fc16bb930d9e07ae42d03dcee /kubernetes/cli/resources
parent3afce3d632a64c5f29056e069c296782795553a5 (diff)
[CLI] Remove aaf dependency
Remove aaf dependency from CLI Remove NodePort from CLI Signed-off-by: efiacor <fiachra.corcoran@est.tech> Change-Id: Ia9f4f3417aff502a195a5849fe2e56243ba9c54b Issue-ID: OOM-3096
Diffstat (limited to 'kubernetes/cli/resources')
-rw-r--r--kubernetes/cli/resources/configuration/lighttpd.conf17
1 files changed, 3 insertions, 14 deletions
diff --git a/kubernetes/cli/resources/configuration/lighttpd.conf b/kubernetes/cli/resources/configuration/lighttpd.conf
index 0809868b35..f1735a1e5d 100644
--- a/kubernetes/cli/resources/configuration/lighttpd.conf
+++ b/kubernetes/cli/resources/configuration/lighttpd.conf
@@ -1,6 +1,7 @@
{{/*
# Copyright 2018 Huawei Technologies Co., Ltd.
# Copyright 2021 Huawei Technologies Co., Ltd.
+# Modifications Copyright © 2023 Nordix Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -18,9 +19,7 @@
server.document-root = "/var/www-data/servers/open-cli/"
server.username = "www-data"
server.groupname = "www-data"
-server.port = 443
-ssl.engine = "enable"
-ssl.pemfile = "{{ .Values.certInitializer.credsPath }}/certs/fullchain.pem"
+server.port = {{ .Values.containerPort }}
mimetype.assign = (
".html" => "text/html",
@@ -38,18 +37,8 @@ server.modules = (
"mod_proxy",
"mod_alias",
"mod_compress",
- "mod_redirect",
-# "mod_rewrite",
+ "mod_redirect"
)
-#server.upload-dirs = ( "/var/cache/lighttpd/uploads" )
server.errorlog = "/var/log/lighttpd/error.log"
server.pid-file = "/var/run/lighttpd.pid"
-#compress.cache-dir = "/var/cache/lighttpd/compress/"
-#compress.filetype = ( "application/javascript", "text/css", "text/html", "text/plain" )
-
-# default listening port for IPv6 falls back to the IPv4 port
-## Use ipv6 if available
-#include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
-#include_shell "/usr/share/lighttpd/create-mime.assign.pl"
-#include_shell "/usr/share/lighttpd/include-conf-enabled.pl" \ No newline at end of file