Replies: 1 comment 1 reply
-
Sorry, it seems Passenger config won't work.
Maybe we need to add the variable into |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I noticed that Passenger (in so-playbook), Grafana and InfluxDB send anonymous telemetry and try checking their update.
I wanted to stop them and made some changes to config files for my rigs showing below.
These configs should be selectable during installation of Security Onion.
Passenger (in so-playbook)
/passenger-nginx-config-template.erb
in a so-playbook container.Add "passenger_disable_security_update_check on" and "passenger_disable_anonymous_telemetry on" in an http directive.
Following commands are just example:
Reference: https://www.phusionpassenger.com/docs/references/config_reference/nginx/#passenger_disable_anonymous_telemetry
Grafana
/opt/so/saltstack/default/salt/grafana/defaults.yaml
Add following lines:
Reference: https://grafana.com/docs/grafana/latest/administration/configuration/#analytics
InfluxDB
/opt/so/saltstack/default/salt/influxdb/etc/influxdb.conf
Uncomment the line and change to true:
reporting-disabled = true
Reference: https://docs.influxdata.com/influxdb/v2.0/reference/config-options/#reporting-disabled
EDIT:
In addition, if telemetry is enabled and rigs are under proxy environment, HTTPS_PROXY environment variable is needed for those containers.
EDIT2:
Changed the way to disable telemetry of Passenger.
Beta Was this translation helpful? Give feedback.
All reactions