Skip to content

Commit

Permalink
Adds influxdb_http_ip to specify listening IP; defaults to 0.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leucos committed Mar 28, 2020
1 parent f7fb212 commit 92667fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/influxdb.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
enabled = true

# The bind address used by the HTTP service.
bind-address = ":{{ influxdb_http_port }}"
bind-address = "{{ influxdb_http_ip | default('0.0.0.0') }}:{{ influxdb_http_port }}"

# Determines whether user authentication is enabled over HTTP/HTTPS.
auth-enabled = {{ influxdb_http_auth_enabled }}
Expand Down

0 comments on commit 92667fc

Please sign in to comment.