blob: 1a16b003b618d51b296dba1bc80092873edaf4e4 [file] [log] [blame]
Skip Wonnell2c977e22018-03-01 08:30:15 -06001
2# ============LICENSE_START==========================================
3#===================================================================
4#Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
5#===================================================================
6
7#Unless otherwise specified, all software contained herein is licensed
8#under the Apache License, Version 2.0 (the License);
9#you may not use this software 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
20#ECOMP is a trademark and service mark of AT&T Intellectual Property.
21#============LICENSE_END============================================
22
23server {
24 listen 80;
25 sendfile on;
26 default_type application/octet-stream;
27 gzip on;
28 gzip_http_version 1.1;
29 gzip_disable "MSIE [1-6]\.";
30 gzip_min_length 256;
31 gzip_vary on;
32 gzip_proxied expired no-cache no-store private auth;
33 gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;
34 gzip_comp_level 9;
35
36
37 root /usr/share/nginx/html;
38
39
40 location / {
41 try_files $uri $uri/ /index.html =404;
42 }
43
44}