博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Etherpad配置及管理功能
阅读量:2024 次
发布时间:2019-04-28

本文共 570 字,大约阅读时间需要 1 分钟。

  • 配置文件

编译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 nodebin/run.sh
  • 测试管理员功能

转载地址:http://lqkaf.baihongyu.com/

你可能感兴趣的文章
LeetCode146. LRU Cache(思路及python解法)
查看>>
LeetCode29. Divide Two Integers(思路及python解法)
查看>>
LeetCode1038. Binary Search Tree to Greater Sum Tree(思路及python解法)
查看>>
LeetCode18. 4Sum (思路及python解法)
查看>>
LeetCode16. 3Sum Closest(思路及python解法)
查看>>
LeetCode31. Next Permutation(思路及python解法)
查看>>
LeetCode80. Remove Duplicates from Sorted Array II(思路及python解法)
查看>>
LeetCode40. Combination Sum II(思路及python解法)
查看>>
LeetCode43. Multiply Strings(思路及python解法)
查看>>
LeetCode001 Two Sum
查看>>
LeetCode172. Factorial Trailing Zeroes
查看>>
LeetCode268. Missing Number
查看>>
****LeetCode257. Binary Tree Paths
查看>>
LeetCode345. Reverse Vowels of a String
查看>>
解决ImportError: cannot import name 'main'
查看>>
LeetCode374. Guess Number Higher or Lower
查看>>
LeetCode383. Ransom Note
查看>>
LeetCode387. First Unique Character in a String
查看>>
LeetCode389. Find the Difference
查看>>
****LeetCode400. Nth Digit
查看>>