Steve Weber

Results 40 comments of Steve Weber

looking at the code `git checkout v2.0.0-alpha.19` i see some env vars... but setting them didn't help. systemd... ``` Environment="STATIC_PREFIX=/influxdb2/" Environment="API_PREFIX=/influxdb2/" Environment="BASE_PATH=/influxdb2/" Environment="API_BASE_PATH=/influxdb2/" ExecStart=/srv/influxd ``` also seems that the option...

please provide some feedback before closing. Thanks.

seems the only solution to date is recompiling the source code because the path is baked in. workarounds: - give-up and use a different hostname or a subdomain. - write...

An option like: auto_restart=(bool) would be vary nice for my use case. We are using the proxy to launch a service on a HPC that has limited GPUs. Without a...

O silly me after reviewing the code and well somewhat getting it figured out I realized that "Add configuration option to allow restart on graceful exit #215" is a PR....

Personally i would rather see: `auto_restart` and ignore the exit code. Because if something is failing we don't want to keep retrying forever and potentiality flooding the other end. Also...

confirmed that ``` with (await self.state['proc_lock']): if 'proc' in self.state: if self.state['proc'].returncode == 0: del self.state['proc'] ``` works.

related: https://github.com/Yubico/yubico-pam/issues/20

perhaps influxdb can only be enabled using a config file.

sadly I had to disable OCSP to get https using the letsencrypt cert working for me on private networks. `sed -i 's|OCSP_CHECK|OCSP_CHECK_DISABLED|g' config/crypto.h`