Merge "DG changes for the closed loop and async support in MDONS"
[sdnc/oam.git] / installation / sdnc-web / src / main / resources / http_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 default_server ;
44         listen [::]:WEBPORT default_server;
45
46 #       root /var/www;
47
48         index index.html index.htm index.nginx-debian.html;
49
50         server_name _;
51
52         location ~ ^/$  {
53                 return 301 /odlux/index.html;
54         }
55         location ~ /help/$  {
56                 try_files /help/$args.json $uri;
57         }
58         location /  {
59                 try_files $uri $uri/ @backend;
60         }
61         location /websocket {
62                 proxy_pass SDNRPROTOCOL://SDNRHOST:SDNRPORT/websocket;
63                 proxy_http_version 1.1;
64                 proxy_set_header Upgrade $http_upgrade;
65                 proxy_set_header Connection "upgrade";
66         }
67         location @backend {
68                 proxy_pass SDNRPROTOCOL://SDNRHOST:SDNRPORT;
69         }
70
71 }
72