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/

发布了2466 篇原创文章 · 获赞 301 · 访问量 177万+

猜你喜欢

转载自blog.csdn.net/quantum7/article/details/104355866
今日推荐