Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / vnfsdk / resources / nginx / nginx.conf
1 # 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
15 daemon off;
16
17 #pid /run/nginx.pid;
18
19 events {
20     worker_connections 500;
21     # multi_accept on;
22 }
23 http {
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 {
41         listen      {{ .Values.service.internalPort }};
42         server_name {{ .Values.service.name }};
43         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 }