1 # ============LICENSE_START===============================================
2 # Copyright (C) 2020-2023 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=================================================
18 worker_processes auto;
20 include /etc/nginx/modules-enabled/*.conf;
23 worker_connections 768;
36 types_hash_max_size 2048;
38 include /etc/nginx/mime.types;
39 default_type application/octet-stream;
41 server { # simple reverse-proxy
46 server_name localhost;
47 ssl_certificate /usr/src/app/cert/cert.crt;
48 ssl_certificate_key /usr/src/app/cert/key.crt;
49 ssl_password_file /usr/src/app/cert/pass;
51 # serve dynamic requests
53 proxy_pass http://localhost:2222;
54 client_max_body_size 0;
61 ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
62 ssl_prefer_server_ciphers on;
68 access_log /var/log/nginx/access.log;
69 error_log /var/log/nginx/error.log;