blob: 9d7aa78b361cb40f099fb9bac78bff9dac770278 [file] [log] [blame]
Sylvain Desbureaux554bc6b2021-02-25 18:13:19 +01001# Copyright 2020 Huawei Technologies Co., Ltd.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15daemon off;
16
17#pid /run/nginx.pid;
18
19events {
20 worker_connections 500;
21 # multi_accept on;
22}
23http {
24
25 ##
26 # Basic Settings
27 ##
28
29 sendfile on;
30 tcp_nopush on;
31 tcp_nodelay on;
32 keepalive_timeout 65;
33 types_hash_max_size 2048;
34
35 #Comment or disable the access_log once tested to avoid runtime logs
36# access_log /var/log/nginx/access.log format gzip;
37 access_log off;
38 error_log /var/log/nginx/error.log;
39
40 server {
Andreas Geissler74790422023-02-27 10:31:01 +010041 listen {{ .Values.service.internalPort }};
42 server_name {{ .Values.service.name }};
Sylvain Desbureaux554bc6b2021-02-25 18:13:19 +010043 keepalive_timeout 70;
44
45 location / {
46 proxy_set_header Host $host;
47 proxy_set_header X-Real-IP $remote_addr;
48 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
49 proxy_set_header X-Forwarded-Proto $scheme;
50 proxy_pass http://localhost:8702;
51 proxy_read_timeout 90;
52 proxy_redirect off;
53 }
54 }
55}