mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
3fcff2555a
* Fix running graphite data sources in dev env * Remove broken dashboard files * Add Graphite 1.0 and 0.9 to provisioned data sources
71 lines
1.7 KiB
Nginx Configuration File
71 lines
1.7 KiB
Nginx Configuration File
daemon off;
|
|
user www-data;
|
|
worker_processes 1;
|
|
pid /var/run/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
keepalive_timeout 65;
|
|
types_hash_max_size 2048;
|
|
server_tokens off;
|
|
|
|
server_names_hash_bucket_size 32;
|
|
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
access_log /var/log/nginx/access.log;
|
|
error_log /var/log/nginx/error.log;
|
|
|
|
gzip on;
|
|
gzip_disable "msie6";
|
|
|
|
server {
|
|
listen 80 default_server;
|
|
server_name _;
|
|
|
|
open_log_file_cache max=1000 inactive=20s min_uses=2 valid=1m;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:8000;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header X-Forwarded-Server $host;
|
|
proxy_set_header X-Forwarded-Host $host;
|
|
proxy_set_header Host $host;
|
|
|
|
client_max_body_size 10m;
|
|
client_body_buffer_size 128k;
|
|
|
|
proxy_connect_timeout 90;
|
|
proxy_send_timeout 90;
|
|
proxy_read_timeout 90;
|
|
|
|
proxy_buffer_size 4k;
|
|
proxy_buffers 4 32k;
|
|
proxy_busy_buffers_size 64k;
|
|
proxy_temp_file_write_size 64k;
|
|
}
|
|
|
|
add_header Access-Control-Allow-Origin "*";
|
|
add_header Access-Control-Allow-Methods "GET, OPTIONS";
|
|
add_header Access-Control-Allow-Headers "origin, authorization, accept";
|
|
|
|
location /content {
|
|
alias /opt/graphite/webapp/content;
|
|
|
|
}
|
|
|
|
location /media {
|
|
alias /usr/share/pyshared/django/contrib/admin/media;
|
|
}
|
|
}
|
|
}
|