天天看点

Etherpad配置及管理功能

  • 配置文件

编译settings.json

  • 配置端口

 "port": 9001,

  • 配置用户

搜索users,找到如下代码,去掉注释:

"users": {
    "admin": {
      // 1) "password" can be replaced with "hash" if you install ep_hash_auth
      // 2) please note that if password is null, the user will not be created
      "password": "123456",
      "is_admin": true
    },
    "test": {
      // 1) "password" can be replaced with "hash" if you install ep_hash_auth
      // 2) please note that if password is null, the user will not be created
      "password": "123456",
      "is_admin": false
    }
  },      
  • 重启服务器
# 省事
killall node
 
bin/run.sh      
  • 测试管理员功能
http://127.0.0.1:9001/admin/
Etherpad配置及管理功能