Chore: Add gerrit maven verify GHA workflow
[sdnc/oam.git] / installation / sdnc-web / src / main / resources / https_site.conf
1 ###
2 # ============LICENSE_START=======================================================
3 # ONAP : ccsdk distribution web
4 # ================================================================================
5 # Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
6 # All rights reserved.
7 # ================================================================================
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 #      http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19 # ============LICENSE_END=========================================================
20 ###
21
22 ##
23 # You should look at the following URL's in order to grasp a solid understanding
24 # of Nginx configuration files in order to fully unleash the power of Nginx.
25 # https://www.nginx.com/resources/wiki/start/
26 # https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
27 # https://wiki.debian.org/Nginx/DirectoryStructure
28 #
29 # In most cases, administrators will remove this file from sites-enabled/ and
30 # leave it as reference inside of sites-available where it will continue to be
31 # updated by the nginx packaging team.
32 #
33 # This file will automatically load configuration files provided by other
34 # applications, such as Drupal or Wordpress. These applications will be made
35 # available underneath a path with that package name, such as /drupal8.
36 #
37 # Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
38 ##
39
40 # Default server configuration
41 #
42 server {
43     listen WEBPORT ssl default_server ;
44     listen [::]:WEBPORT ssl default_server;
45
46     # SSL configuration
47     #
48     # listen 443 ssl default_server;
49     # listen [::]:443 ssl default_server;
50     #
51     # Note: You should disable gzip for SSL traffic.
52     # See: https://bugs.debian.org/773332
53     #
54     # Read up on ssl_ciphers to ensure a secure configuration.
55     # See: https://bugs.debian.org/765782
56     #
57     # Self signed certs generated by the ssl-cert package
58     # Don't use them in a production server!
59     #
60     # include snippets/snakeoil.conf;
61
62     ssl_certificate SSL_CERT_DIR/SSL_CERTIFICATE;
63     ssl_certificate_key SSL_CERT_DIR/SSL_CERTIFICATE_KEY;
64
65 #   root /var/www;
66
67     index index.html index.htm index.nginx-debian.html;
68
69     server_name _;
70
71     include server_blocks/location.rules;
72   
73     gzip on;
74     gzip_min_length 1000;
75     gzip_comp_level 5;
76     gzip_proxied any;
77     gzip_vary on;
78     gzip_types text/plain
79                 application/json
80                 application/xml
81                 application/yang-data+json
82                 application/yang-data+xml
83                 text/javascript
84                 application/javascript;
85 }