Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Fixed Related Articles

Wiki Markup
{scrollbar}

Security FAQ

 

{
Div
Wiki Markup
style
float:right
titleRelated Articles
classaui-label
Content by Label
showLabelsfalse
showSpacefalse
titleRelated Articles
cqllabel = "security" and space = currentSpace()
|background=#eee} {contentbylabel:title=Related Articles|showLabels=false|showSpace=false|space=@self|labels=security} {float}

The built-in Dashboard page are visible in my production application and I don't want them to be, what can I do?

...

Code Block
  @Contribute(ClientWhitelist.class)
  public static void turnOffLocalhostInProduction(OrderedConfiguration<WhitelistAnalyzer> configuration, 
                                                 @Symbol(SymbolConstants.PRODUCTION_MODE) boolean productionMode) {
    if (productionMode) { configuration.override("LocalhostOnly", null); }
  } 

Wiki Markup
{scrollbar}