Skip to main content

Hi,

We have a workspace file with a size of 2140kb, when we tried to upload to FME server we are getting a publish failed error:

Publish failed - FME Server encountered an error.

Request to https://myserver/fmerest/v3/repositories/dev/items returned status code 413.

HTTP Error 413 is Entity Too Large, where can I change this restriction on FME Server?

Thanks.

If it is a standard FME Server installation (with the built-in Tomcat HTTP server and the default FME Server configuration), this should not happen. My workspaces were over 4MB and I never experienced any problems.

My guess is that your HTTP server configuration is the problem here. Which one are you using? IIS, Tomcat, Apache...?


If it is a standard FME Server installation (with the built-in Tomcat HTTP server and the default FME Server configuration), this should not happen. My workspaces were over 4MB and I never experienced any problems.

My guess is that your HTTP server configuration is the problem here. Which one are you using? IIS, Tomcat, Apache...?

Hi,

 

I'm using nginx as a reverse proxy, I add to my config:
# set client body size to 20M #
client_max_body_size 20M;

And start working.

 

Thanks!!!
Hi,

 

I'm using nginx as a reverse proxy, I add to my config:
# set client body size to 20M #
client_max_body_size 20M;

And start working.

 

Thanks!!!
Glad you figured it out and thanks for sharing the solution. It helps others who might have the same issue!

Reply