influxdb: fix reverse proxy
Like grafana. Also set some buffering options.
This commit is contained in:
parent
7f28f3a366
commit
6797f65971
1 changed files with 5 additions and 1 deletions
|
@ -6,7 +6,11 @@ server {
|
|||
ssl_certificate /etc/letsencrypt/live/{{ dns_name }}/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/{{ dns_name }}/privkey.pem;
|
||||
|
||||
client_body_buffer_size 10M;
|
||||
|
||||
location / {
|
||||
proxy_pass http://localhost:8087;
|
||||
proxy_pass http://127.0.0.1:8087;
|
||||
|
||||
proxy_max_temp_file_size 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue