blob: effe31fd6680ba680559ac8e1aff39daa905d3b0 [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Example Metron configuration for nginx
upstream metron {
server 127.0.0.1:5000;
keepalive 120;
}
server {
client_max_body_size 1g;
gzip on;
gzip_comp_level 6;
gzip_min_length 1000;
gzip_vary on;
gzip_proxied any;
gzip_types text/plain text/html application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
listen 8080;
# Change to your host
server_name metron.dev;
# Change to your web root
root /var/www/metron-ui/lib/public;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-NginX-Proxy true;
proxy_http_version 1.1;
# Required for HTML5 Websockets (Realtime Alerts)
proxy_set_header Connection "Upgrade";
proxy_set_header Upgrade $http_upgrade;
proxy_pass http://metron;
proxy_redirect off;
break;
}
}