Unable to proceed after uploading display picture
プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。
Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Fisheye および Crucible は除く
問題
Unable to proceed, after hitting Save (after uploading a profile photo):
原因
Proxy configuration such as NGINX or Apache that may have prevented the PUT request from being fired
ソリューション
Please note that proxy configuration are beyond the support scope of Atlassian Support
Try to bypass the proxy and see whether the problem persists (access via the Confluence IP address and port, example: http://192.168.1.1:8090 ). If the issue is resolved after bypassing the proxy, but you wish to keep Confluence behind the proxy, then try to check the proxy configuration for lines such as this (this is in NGINX):
if ($request_method !~ ^(GET|HEAD|POST)$ )
{ return 444;
You may need to modify it to:
if ($request_method !~ ^(GET|HEAD|POST|PUT)$ )
{ return 444;