How to customize the "Not Permitted" page
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
Product customizations are outside of Support scope as described on the Atlassian Support Offerings Page. For in-depth customization requests, please refer to our Developer Network or Atlassian Partners.
目的
This page gets you started on customizing the Confluence "Not Permitted" page with your own logo or custom text.
The contents covered in this page will not change the actual permission process, but what end users see when they try to access Confluence without user permissions (Eg. a Jira user which is not a member of the confluence-users group).
ソリューション
We recommend testing the changes on a Test instance before applying them to Production.
Customize the .vmd file:
- Navigate to the <Confluence-Install>/confluence directory.
Locate and backup the notpermitted.vm file.
Edit the file with a text or code editor to make your changes.
Please note: the template contains a mix of HTML markup and Velocity content, see Velocity Template Overview (in our developer documentation) for more information.- Refresh the page. You may need to clear your browser's cache.
Here's an example with a simple text added on line 13:
<html>
<head>
<title>$action.title</title>
<meta name="decorator" content="atl.general">
$webResourceManager.requireResourcesForContext("error.page")
</head>
<body>
#parse ( "/breadcrumbs.vm" )
<div id="content" class="access-error-container $action.cssClass">
<div class="access-error">
<h2>$action.title</h2>
<p>$action.message</p>
<p>Contact <b>Charlie of Atlassian</b> (charlie@atlassian.com) for requesting access to Confluence.</p>
</div>
</div>
</body>
</html>