blob: 0809868b355b7ef16e24da2e79e1b4513d2c2fa8 [file] [log] [blame]
Sylvain Desbureauxbc1f4be2021-02-16 11:51:30 +01001{{/*
2# Copyright 2018 Huawei Technologies Co., Ltd.
3# Copyright 2021 Huawei Technologies Co., Ltd.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16*/}}
17
18server.document-root = "/var/www-data/servers/open-cli/"
19server.username = "www-data"
20server.groupname = "www-data"
21server.port = 443
22ssl.engine = "enable"
23ssl.pemfile = "{{ .Values.certInitializer.credsPath }}/certs/fullchain.pem"
24
25mimetype.assign = (
26 ".html" => "text/html",
27 ".txt" => "text/plain",
28 ".jpg" => "image/jpeg",
29 ".png" => "image/png"
30)
31
32index-file.names = ( "index.html" )
33dir-listing.activate = "disable"
34
35
36server.modules = (
37 "mod_access",
38 "mod_proxy",
39 "mod_alias",
40 "mod_compress",
41 "mod_redirect",
42# "mod_rewrite",
43)
44
45#server.upload-dirs = ( "/var/cache/lighttpd/uploads" )
46server.errorlog = "/var/log/lighttpd/error.log"
47server.pid-file = "/var/run/lighttpd.pid"
48#compress.cache-dir = "/var/cache/lighttpd/compress/"
49#compress.filetype = ( "application/javascript", "text/css", "text/html", "text/plain" )
50
51# default listening port for IPv6 falls back to the IPv4 port
52## Use ipv6 if available
53#include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
54#include_shell "/usr/share/lighttpd/create-mime.assign.pl"
55#include_shell "/usr/share/lighttpd/include-conf-enabled.pl"