gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

outgoing-proxy.md (1004B)


      1 # Outgoing HTTP proxy
      2 
      3 GoToSocial supports canonical environment variables for configuring the use of an HTTP proxy for outgoing requets:
      4 
      5 * `HTTP_PROXY`
      6 * `HTTPS_PROXY`
      7 * `NO_PROXY`
      8 
      9 The lowercase versions of these environment variables are also recognised. `HTTPS_PROXY` takes precedence over `HTTP_PROXY` for https requests.
     10 
     11 The environment values may be either a complete URL or a `host[:port]`, in which case the "http" scheme is assumed. The schemes "http", "https", and "socks5" are supported.
     12 
     13 ## systemd
     14 
     15 When running with systemd, you can add the necessary environment variables using the `Environment` option in the `Service` section.
     16 
     17 How to do so is documented in the [`systemd.exec` manual](https://www.freedesktop.org/software/systemd/man/systemd.exec.html#Environment).
     18 
     19 ## Container runtime
     20 
     21 Environment variables can be set in the compose file under the `environment` key. You can also pass them on the CLI to Docker or Podman's `run` command with `-e KEY=VALUE` or `--env KEY=VALUE`.