JIRA File Upload issue

JIRA file Upload Issue



JIRA having Tomcat as a main Server and Nginx as a proxy Server.

What does a Proxy Server means?

Imagine we have a single server

You have one application running on apache server

You have another application running on java webserver

You have third application running on Tomcat apache

You have an nginx

The 3 different servers all should listen on port 443 or 80

On Linuxweb.apoyar-KITTY

Sudo su

  1. cd /etc/nginx/sites-enabled/
  1. ls

Confluence.conf jira.conf mediawiki.conf ssl-gitlab.conf status.conf

  1. vi jira.conf
  1. netstat – anpt | grep LISTEN

(the term LISTEN means that th application is looking at that particular port of its and what ever requests comes from the outside of internal work the application is supposed to respond)

  1. vi jira.conf (it passing all the traffic to port 8008, Jira itself using java to provide the webservices)

Client max-body-size 100M;

(nginx is blocking any upload bigger than 100 MB , By Default JAVA setting size is 20MB.