1.创建安装目录:mkdir -p /root/data/docker_data/matrix && cd /root/data/docker_data/matrix
运行sudo docker run -it –rm \ -v /root/data/docker_data/matrix/data:/data \ -e SYNAPSE_SERVER_NAME=反代域名 \ -e SYNAPSE_REPORT_STATS=yes \ matrixdotorg/synapse:latest generate生成配置文件
2.ls -al
cd /root/data/docker_data/matrix/data
ls -al
nano homeserver.yaml
ctrl+x 回车Y 退出
# Configuration file for Synapse.
#
# This is a YAML file: see [1] for a quick introduction. Note in particular
# that *indentation is important*: all the elements of a list or dictionary
# should have the same indentation.
#
# [1] https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html
#
# For more information on how to configure Synapse, including a complete accounting of
# each option, go to docs/usage/configuration/config_documentation.md or
# https://matrix-org.github.io/synapse/latest/usage/configuration/config_documentation.html
server_name: “反代域名”
pid_file: /data/homeserver.pid
listeners:
– port: 8008
tls: false
type: http
x_forwarded: true
resources:
– names: [client, federation]
compress: false
database:
name: sqlite3
args:
database: /data/homeserver.db
log_config: “/data/反代域名.log.config”
media_store_path: /data/media_store
registration_shared_secret: “wwaftxJ&3W3Xkx1y4gYoeoY0p6ywmkx96JZB7rCYg2+_bd~M,t”
report_stats: true
macaroon_secret_key: “+i6*ZU+ZgxnIjX98@F3F#Oxw*Un*40=58ESt=+HW=SVA@N6ITy”
form_secret: “xMGG5P~DD-7Brm19jaYR9v0d.wG:abNxN9ikdWcgNE7Z3F;NmB”
signing_key_path: “/data/matrix.gugu.ovh.signing.key”
trusted_key_servers:
– server_name: “matrix.org”
enable_registration: true
enable_registration_without_verification: true
即添加enable_registration: true
enable_registration_without_verification: true 注册和不需要验证也能注册
.
3.cd /root/data/docker_data/matrix
nano docker-compose.yml
version: “3.3”
services:
synapse:
image: “matrixdotorg/synapse:latest”
container_name: “matrix_synapse”
restart: unless-stopped
ports:
– 8008:8008
volumes:
– “./data:/data” # it will look at the current directory where you save the file and look for the data folder inside
environment:
VIRTUAL_HOST: “matrix.gugu.ovh”
VIRTUAL_PORT: 8008
LETSENCRYPT_HOST: “反代域名”
SYNAPSE_SERVER_NAME: “反代域名”
SYNAPSE_REPORT_STATS: “yes”
element-web:
ports:
– ‘8009:80’
#volumes:
# – ‘/etc/element-web/config.json:/app/config.json’
image: vectorim/element-web
restart: unless-stopped
docker ps
4.ip:8009
查看8089是否被占用:lsof -i:8009
如果-bash: lsof: command not found
apt install lsof
5.更新和卸载
cd /root/data/docker_data/matrix
docker-compose pull
docker -compose up -d
docker image prune # prune 命令用来删除不再使用的 docker 对象。删除所有未被 tag 标记和未被容器使用的镜像
cd /root/data/docker_data/matrix
docker-compose down
rm -rf /root/data/docker_data/matrix # 完全删除
感谢您的来访,获取更多精彩文章请收藏本站。
1. 资源都是经过站长或作者收集测试修改后发布分享。转载请在文内以超链形式注明出处,谢谢合作!
2. 本站除原创内容,其余所有内容均收集自互联网,仅限用于学习和研究目的,本站不对其内容的合法性承担任何责任。如有版权内容,请通知我们或作者删除,其版权均归原作者所有,本站虽力求保存原有版权信息,但因众多资源经多次转载,已无法确定其真实来源,或已将原有信息丢失,所以敬请原作者谅解!
3. 本站用户所发布的一切资源内容不代表本站立场,并不代表本站赞同其观点和对其真实性负责,若您对本站所载资源作品版权归属存有异议,请留言附说明联系邮箱,我们将在第一时间予以处理 ,同时向您表示歉意!为尊重作者版权,请购买原版作品,支持您喜欢的作者,谢谢!
4. 本站一律禁止以任何方式发布或转载任何违法的相关信息,访客如有发现请立即向站长举报;本站资源文件大多存储在云盘,如发现链接或图片失效,请联系作者或站长及时更新。


测试-晴天生活分享日志">
彩虹易支付使用教程-晴天生活分享日志">



暂无评论内容