在etherpad lite中应用身份验证

时间:2012-09-13 06:11:31

标签: authentication etherpad

我们如何防止公共访问etherpad lite pad。有什么方法可以防止未经授权访问etherpads。只有拥有用户名和密码的用户才能访问这些打击垫。

我在windows上使用etherpad lite。 感谢。

1 个答案:

答案 0 :(得分:7)

您必须在etherpad的settings.json中进行配置。原始配置已有详细记录。

以下是您应该注意的配置部分。

  /* Users must have a session to access pads. This effectively allows only group pads to be accessed. */
  "requireSession" : true,

  /* Users may edit pads but not create new ones. Pad creation is only via the API. This applies both to group pads and regular pads. */
  "editOnly" : false,

  /* How long may clients use served javascript code (in seconds)? Without versioning this
     may cause problems during deployment. Set to 0 to disable caching */
  "maxAge" : 21600, // 60 * 60 * 6 = 6 hours

  /* This is the path to the Abiword executable. Setting it to null, disables abiword.
     Abiword is needed to advanced import/export features of pads*/  
  "abiword" : null,

  /* This setting is used if you require authentication of all users.
     Note: /admin always requires authentication. */
  "requireAuthentication": true,

  /* Require authorization by a module, or a user with is_admin set, see below. */
  "requireAuthorization": true,

  /* Users for basic authentication. is_admin = true gives access to /admin.
     If you do not uncomment this, /admin will not be available! */
  /*
  "users": {
    "admin": {
      "password": "changeme1",
      "is_admin": true
    },
    "user": {
      "password": "changeme1",
      "is_admin": false
    }
  },
  */
相关问题