| This thread was migrated from an old forum. It may contain information that are no longer valid. For further assistance, please post a new question or open a support ticket from the Customer Support portal. |
#[Informational Post]
If unpublish/publish fails with 414 error we need to verify the get request size restriction at webserver. Generally when we try to publish or unpublish we will try to delete all services by GET request to authService which is failing due to size restriction.
Also, you will see this issue, if you have more than 500 services in your application.
Below is the configuration we need to configure at webserver level.
LimitRequestFieldSize 881900000
LimitRequestLine 881900000
<VirtualHost *:80>
LimitRequestFieldSize 881900000
LimitRequestLine 881900000
<IfModule mod_rewrite.c>
RewriteEngine on
Rewritemap lowercase int:tolower
RewriteCond ${lowercase:%{REQUEST_URI}} ^/intranet
RewriteRule ^(.*)$ ${lowercase:$1}
</IfModule>
</VirtualHost>
Thank you,