1 # ============LICENSE_START===============================================
2 # Copyright (C) 2020-2022 Nordix Foundation. All rights reserved.
3 # ========================================================================
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
8 # http://www.apache.org/licenses/LICENSE-2.0
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 # ============LICENSE_END=================================================
19 worker_processes auto;
21 include /etc/nginx/modules-enabled/*.conf;
24 worker_connections 768;
37 types_hash_max_size 2048;
39 include /etc/nginx/mime.types;
40 default_type application/octet-stream;
42 server { # simple reverse-proxy
47 server_name localhost;
48 ssl_certificate /usr/src/app/cert/cert.crt;
49 ssl_certificate_key /usr/src/app/cert/key.crt;
50 ssl_password_file /usr/src/app/cert/pass;
52 # serve dynamic requests
54 proxy_set_header Host $host;
55 proxy_set_header X-Real-IP $remote_addr;
56 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
57 proxy_pass http://localhost:2222;
59 client_max_body_size 0;
67 ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
68 ssl_prefer_server_ciphers on;
74 access_log /var/log/nginx/access.log;
75 error_log /var/log/nginx/error.log;