Installation
  • 02 May 2023
  • Dark
    Light

Installation

  • Dark
    Light

Article Summary

  1. Install the module dependencies:
    apt update && apt install -y libcurl4 libapr1 libjansson4 libaprutil1 bzip2
    yum update && yum install -y jansson libcurl apr apr-util pcre
  2. Extract the module:
    ActionScript
    bunzip2 envoy.bz2
  3. Copy the new Envoy binary to /usr/local/bin/ folder:
    Shell
    cp envoy /usr/local/bin/
  4. In your config.yaml file add, a new filter in the http_filterssection:
    YAML
    http_filters:
        ...
        - name: perimeterx
          typed_config:
            "@type": type.googleapis.com/udpa.type.v1.TypedStruct
            type_url: type.googleapis.com/envoy.extensions.filters.http.perimeterx
            value:
              px_enabled: true
              px_appid: ""
              px_cookie_secret: ""
              px_auth_token: ""

Make sure to update the following required properties:


Was this article helpful?