<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to setup a site down (maintenance page) for cloud AEM? in Adobe Experience Manager Discussions</title>
    <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/454531#M33757</link>
    <description>&lt;P&gt;No, in the end we put Azure traffic manager (DNS resolver) in front of AEM and point to a Azure Static web app when we want to do site down. In TM you can switch between different endpoints.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If we did it via AEM, I would use a java servlet filter to do the redirect for html documents based on a setting editable in Author instance. However, this will add a bit of latency to every page, and may or may not affect caching.&lt;/P&gt;</description>
    <pubDate>Thu, 02 Jun 2022 09:50:41 GMT</pubDate>
    <dc:creator>nutmix2</dc:creator>
    <dc:date>2022-06-02T09:50:41Z</dc:date>
    <item>
      <title>How to setup a site down (maintenance page) for cloud AEM?</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/420734#M31480</link>
      <description>&lt;P&gt;If you run an on-prem AEM, you can put a down.html in your apache doc root and configure dispatcher to point to it.&amp;nbsp;&amp;nbsp;&lt;A href="https://www.aemquickstart.in/2017/02/create-maintenance-page-in-apache.html" target="_blank" rel="noopener"&gt;https://www.aemquickstart.in/2017/02/create-maintenance-page-in-apache.html&lt;/A&gt;&amp;nbsp;This wont work though for Cloud.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to setup a site down page in cloud AEM?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ideally it would be one we can trigger (turn on/off) manually (e.g. before we do a deploy, or if one of the services our site depends on is down).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Aug 2021 14:52:27 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/420734#M31480</guid>
      <dc:creator>TB3dock</dc:creator>
      <dc:date>2021-08-27T14:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup a site down (maintenance page) for cloud AEM?</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/420747#M31481</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;LI-USER uid="17416589"&gt;&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I believe we can create a maintenance page on AEM such as /content/maintenance.html including content and styles and configure the dispatcher to serve the content from the temp path until the actual deployment is done.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another case can be host a static HTML along with CSS in S3 bucket and use the S3 URL in the dispatcher rewrite to serve the content until the website is up and running.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;STRONG&gt;Using Static HTML hosted within AEM:&lt;/STRONG&gt;&lt;BR /&gt;RewriteCond %{REQUEST_URI} ^/$&lt;BR /&gt;RewriteRule (.*) /content/maintenance.html [PT,L]&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Using Static HTML hosted outside of AEM:&lt;/STRONG&gt;&lt;BR /&gt;RewriteCond %{REQUEST_URI} ^/$&lt;BR /&gt;RewriteRule (.*) https://s3.amazonaws.com/bucket/path/maintenance.html [PT,L]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Aug 2021 17:01:11 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/420747#M31481</guid>
      <dc:creator>Asutosh_Jena_</dc:creator>
      <dc:date>2021-08-27T17:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup a site down (maintenance page) for cloud AEM?</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/420860#M31482</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;LI-USER uid="17416589"&gt;&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The best and ideal way to have the custom error handler if you want to have have dynamicity, means which validates if any service is down or during maintenance is through following below documentation&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://experienceleague.adobe.com/docs/experience-manager-cloud-service/implementing/developing/full-stack/custom-error-page.html?lang=en" target="_blank"&gt;https://experienceleague.adobe.com/docs/experience-manager-cloud-service/implementing/developing/full-stack/custom-error-page.html?lang=en&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can make a switch to enable/disable it via a custom page/page property, where business/users can change it and the same property value you can use while writing business logic for error handling use cases.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Aug 2021 11:11:39 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/420860#M31482</guid>
      <dc:creator>Ritesh_Mittal</dc:creator>
      <dc:date>2021-08-30T11:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup a site down (maintenance page) for cloud AEM?</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/420953#M31483</link>
      <description>&lt;P&gt;Hi, Its easy to create a dispatcher rule to redirect to a down page, what we need is a way to switch it off and on dynamically.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 10:05:55 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/420953#M31483</guid>
      <dc:creator>TB3dock</dc:creator>
      <dc:date>2021-08-31T10:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup a site down (maintenance page) for cloud AEM?</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/420954#M31484</link>
      <description>&lt;P&gt;We are using something like this for 404s, but we need to be able to manually switch the maintenance page on or off, e.g. if one of our sites dependent systems is down, or during an upgrade of one of the systems.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 10:07:42 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/420954#M31484</guid>
      <dc:creator>TB3dock</dc:creator>
      <dc:date>2021-08-31T10:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup a site down (maintenance page) for cloud AEM?</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/454489#M33706</link>
      <description>&lt;P&gt;&lt;LI-USER uid="17416589"&gt;&lt;/LI-USER&gt;&amp;nbsp;: Any luck in setting up this maintenance page and switch OFF/ON trigger?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jun 2022 04:40:35 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/454489#M33706</guid>
      <dc:creator>sab4123</dc:creator>
      <dc:date>2022-06-02T04:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to setup a site down (maintenance page) for cloud AEM?</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/454531#M33757</link>
      <description>&lt;P&gt;No, in the end we put Azure traffic manager (DNS resolver) in front of AEM and point to a Azure Static web app when we want to do site down. In TM you can switch between different endpoints.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If we did it via AEM, I would use a java servlet filter to do the redirect for html documents based on a setting editable in Author instance. However, this will add a bit of latency to every page, and may or may not affect caching.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jun 2022 09:50:41 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-setup-a-site-down-maintenance-page-for-cloud-aem/m-p/454531#M33757</guid>
      <dc:creator>nutmix2</dc:creator>
      <dc:date>2022-06-02T09:50:41Z</dc:date>
    </item>
  </channel>
</rss>

