Merge "[UUI] Service Mesh Compliance for UUI"
[oom.git] / kubernetes / cli / resources / configuration / lighttpd.conf
1 {{/*
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
18 server.document-root = "/var/www-data/servers/open-cli/"
19 server.username             = "www-data"
20 server.groupname            = "www-data"
21 server.port                 = 443
22 ssl.engine                  = "enable"
23 ssl.pemfile                 = "{{ .Values.certInitializer.credsPath }}/certs/fullchain.pem"
24
25 mimetype.assign = (
26   ".html" => "text/html",
27   ".txt" => "text/plain",
28   ".jpg" => "image/jpeg",
29   ".png" => "image/png"
30 )
31
32 index-file.names = ( "index.html" )
33 dir-listing.activate = "disable"
34
35
36 server.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" )
46 server.errorlog             = "/var/log/lighttpd/error.log"
47 server.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"