Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Edit the nginx.conf file.

    Code Block
    nano /etc/nginx/nginx.conf
  2. On the http bracket, add the following line.

    Code Block
    http {
      ...
      
      client_max_body_size 500M;
      
      ...
    }

    This ensures there will be no problems when uploading the NiFi pipelines or the Superset dashboards.

...