- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一些在同一个 Amazon EC2 实例(AWS EC2 实例)下可用的项目,我正在尝试创建一个 Rocket.Chat对于这些项目中的每一个。请注意,这些项目中的每一个都有自己的用户群,并且与其他项目完全隔离,因此每个 Rocket.Chat 实例也应该隔离。
我想做的有点像以下:
www.example1.com
在 chat.example1.com
上聊天吗? ; www.example2.com
在 chat.example2.com
上聊天吗? ; www.example1.com
,
www.example2.com
(...) 托管在同一个 EC2 实例中。这个实例有一个为这些站点提供服务的 Nginx 服务器。所以你可以想象我有以下架构:
# Sites content
/var/www/www.example1.com/
index.php
(...)
/var/www/www.example2.com/
index.php
(...)
# Chats content
/var/www/chat.example1.com/
data/
docker-compose.yml
(...)
/var/www/chat.example2.com/
data/
docker-compose.yml
(...)
# Nginx config
/etc/nginx/sites-enabled/www_example1_com
/etc/nginx/sites-enabled/www_example2_com
/etc/nginx/sites-enabled/chat_example1_com
/etc/nginx/sites-enabled/chat_example2_com
chat.example1.com
db: 27017
rocketchat: 3000
hubot: 3001
chat.example2.com
db: 27017
rocketchat: 3002
hubot: 3003
chat.example1.com
时,事情变得很奇怪按预期工作,但
chat.example2.com
不。我发现
chat.example2.com
正在根据自己的输出在端口 3000 中初始化,因此更改属性
ports
在 docker-compose.yml 文件中似乎不起作用。我是否误解了 Docker Compose 的一些关键概念,或者它真的没有按预期工作?
chat.example1.com
-> 按预期工作。 chat.example1.com:3000
->“安全连接失败”。 chat.example1.com:3002
-> 页面永远不会加载。 chat.example2.com
-> Nginx 出现www.example2.com
. chat.example2.com:3000
-> 加载,但似乎正在使用 chat.example1.com Rocket.Chat 实例/数据库。 chat.example2.com:3002
-> 页面永远不会加载。 chat.example2.com:3002
代替
chat.example2.com
,但后者更可取)。
db:
image: mongo
volumes:
- ./data/runtime/db:/data/db
- ./data/dump:/dump
command: mongod --smallfiles
rocketchat:
image: rocketchat/rocket.chat:latest
environment:
- MONGO_URL=mongodb://db:27017/rocketchat
- ROOT_URL=https://chat.example1.com/
- Accounts_UseDNSDomainCheck=True
links:
- db:db
ports:
- 3000:3000
hubot:
image: rocketchat/hubot-rocketchat:v0.1.4
environment:
- ROCKETCHAT_URL=chat.example1.com
- ROCKETCHAT_ROOM=GENERAL
- ROCKETCHAT_USER=Botname
- ROCKETCHAT_PASSWORD=BotPassw0rd
- BOT_NAME=Botname
- EXTERNAL_SCRIPTS=hubot-help,hubot-seen,hubot-links,hubot-greetings
links:
- rocketchat:rocketchat
# this is used to expose the hubot port for notifications on the host on port 3001, e.g. for hubot-jenkins-notifier
ports:
- 3001:8080
db:
image: mongo
volumes:
- ./data/runtime/db:/data/db
- ./data/dump:/dump
command: mongod --smallfiles
rocketchat:
image: rocketchat/rocket.chat:latest
environment:
- MONGO_URL=mongodb://db:27017/rocketchat
- ROOT_URL=http://chat.example2.com/
- Accounts_UseDNSDomainCheck=True
links:
- db:db
ports:
- 3002:3002
hubot:
image: rocketchat/hubot-rocketchat:v0.1.4
environment:
- ROCKETCHAT_URL=chat.example2.com
- ROCKETCHAT_ROOM=GENERAL
- ROCKETCHAT_USER=Botname
- ROCKETCHAT_PASSWORD=BotPassw0rd
- BOT_NAME=Botname
- EXTERNAL_SCRIPTS=hubot-help,hubot-seen,hubot-links,hubot-greetings
links:
- rocketchat:rocketchat
# this is used to expose the hubot port for notifications on the host on port 3001, e.g. for hubot-jenkins-notifier
ports:
- 3003:8080
server {
listen 443 ssl;
listen 80;
server_name chat.example1.com;
error_log /var/log/nginx/rocketchat_chat_example2_com_error.log;
location / {
proxy_pass http://chat.example1.com:3000/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forward-Proto http;
proxy_set_header X-Nginx-Proxy true;
proxy_redirect off;
}
}
server {
listen 443 ssl;
listen 80;
server_name chat.example2.com;
error_log /var/log/nginx/rocketchat_chat_example2_com_error.log;
location / {
proxy_pass http://chat.example2.com:3002/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forward-Proto http;
proxy_set_header X-Nginx-Proxy true;
proxy_redirect off;
}
}
[ec2-user@ ~]$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
2aa6bc690f0d rocketchat/hubot-rocketchat:v0.1.4 "/bin/sh -c 'node -e " 16 hours ago Up 16 hours 0.0.0.0:3003->8080/tcp chatexample2com_hubot_1
eca85553211a rocketchat/rocket.chat:latest "node main.js" 16 hours ago Up 16 hours 3000/tcp, 0.0.0.0:3002->3002/tcp chatexample2com_rocketchat_1
5a0f5fda3b84 rocketchat/hubot-rocketchat:v0.1.4 "/bin/sh -c 'node -e " 17 hours ago Up 17 hours 0.0.0.0:3001->8080/tcp chatexample1com_hubot_1
a07149fd0e6e rocketchat/rocket.chat:latest "node main.js" 17 hours ago Up 17 hours 0.0.0.0:3000->3000/tcp chatexample1com_rocketchat_1
7ca3b1c3743f mongo "/entrypoint.sh mongo" 18 hours ago Up 17 hours 27017/tcp chatexample1com_db_1
f94d24c55b64 mongo "/entrypoint.sh mongo" 18 hours ago Up 16 hours 27017/tcp chatexample2com_db_1
rocketchat_1 | ➔ System ➔ startup
rocketchat_1 | ➔ +-------------------------------------------------+
rocketchat_1 | ➔ | SERVER RUNNING |
rocketchat_1 | ➔ +-------------------------------------------------+
rocketchat_1 | ➔ | |
rocketchat_1 | ➔ | Version: 0.37.1 |
rocketchat_1 | ➔ | Process Port: 3000 |
rocketchat_1 | ➔ | Site URL: http://chat.example2.com:3000 |
rocketchat_1 | ➔ | |
rocketchat_1 | ➔ +-------------------------------------------------+
最佳答案
Docker 上的 Rocket.Chat 始终在端口 3000
上运行.所以你需要更改文件/var/www/chat.example2.com/docker-compose.yml
为了绑定(bind)主机端口3002
到容器港口3000
, 像这样:
...
rocketchat:
image: rocketchat/rocket.chat:latest
environment:
- MONGO_URL=mongodb://db:27017/rocketchat
- ROOT_URL=http://chat.example2.com/
- Accounts_UseDNSDomainCheck=True
links:
- db:db
ports:
- 3002:3000
...
关于nginx - 如何使用 Docker Compose 启动 2 个(或更多)Rocket.Chat 实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39427907/
我需要对 RocketChat 的前端做一些改动。我已经在 Ubuntu 16.04 上进行了手动安装,并且是 JS 生态系统的新手。只需编辑文件(例如 programs/server/package
我正在尝试重用 Rocket.Chat login 生成的相同 authToken API。 { "status": "success", "data": { "authTok
我正在尝试使用 REST API 登录我的 Rocket Chat 安装。登录调用成功返回,我收到了 AuthToken 和 userID。但我似乎无法绕过登录屏幕。换句话说,我想做的是使用我的应用程
我们想在我们的服务器(域)上使用 Rocket.chat 应用程序而不是 open.rocket.chat,但是当我们用我们的服务器 URL 替换 open.rocket.chat 时,我们收到如下错
我们选择 Rocket.Chat 作为我们团队交流的现成开源产品。 我们想要的只是能够在幕后完成登录部分,因此当用户访问 Rocket.Chat URL(或任何快捷方式/路由 URL 或其他)时,他将
我想知道是否可以拦截通过 Rocket.Chat“自定义脚本”管理部分收到的新消息 最佳答案 编辑/app/ui-message/client/message.js并将以下代码插入Template.m
我正在使用的Python版本是MacOS Sierra上的Python 2.7.13,并且我还将OpenCV 3与Python一起使用。 while True: frame = read_st
我在 ElementaryOS 上安装 Rocket.Chat 服务器时遇到问题。我尝试解压 tgz 文件,但出现错误。 列表: sudo apt-get install npm curl graph
我是 Rocket.Chat 的新手。我需要向 channel 发送消息。我已经获得授权了。当我阅读有关发送消息的文档时,我发现了 roomId 参数,但我不知道如何获取此 ID。我尝试在 Rocke
我尝试用 Rocket.rs 创建一个小网站& Handlebars 模板系统。我想创建一个全局布局并将我的内容包含在 中标签 这是我的代码 templates/ ├── layouts │ └
我试图为“MyConfig”结构实现 Responder 特性。但是我不知道如何创建可以从函数返回的Response(包括类型为String的body)。 我试过这段代码。 #[derive(De
这个问题在这里已经有了答案: How do I create a global, mutable singleton? (7 个答案) How can I pass a variable initi
我正在将来自外部服务的数据存储在本地缓存中,我想创建一个端点来返回当前缓存中的数据。 #![feature(proc_macro_hygiene, decl_macro)] #[macro_use]
我正在尝试创建一个将字符串返回给客户端的 Rocket 路由,但我无法让它工作。到目前为止,这就是我所拥有的: #![feature(plugin)] #![plugin(rocket_codegen
我尝试每晚安装 Rust 并编译 Rocket 的 hello_world 示例项目。我收到此错误: error[E0599]: no associated item named `Lifetime`
我正在使用 Rocket我正在尝试创建一个 Layout 结构。我已经实现了 serde::Serialize,因为文档说静态方法 Template::render 的第二个参数接受一个实现了 Ser
如何将具有非静态生命周期的对象传递给 Rocket 的 manage?目前我有一些类似的东西: fn foo(bar: Bar) -> Result { rocket::ignite()
文件上传不适用于 CentOS 中的 GridFS;文件上传卡在 0%。 我将其更改为文件系统,现在在重新启动服务后可以正常使用。 文件上传后具体存放在哪里? 附带问题:有人知道为什么 GridFS
为什么我应该考虑在我们的开发管道中使用 Rocket 而不是 Docker。我们想使用 docker 创建可测试的容器,但现在有 Rocket 假装知道同样的事情。如果我们想开始容器化,我们是否应该认
我正在尝试设置与 kubernetes 的 HA rocket 聊天。根据rocket chat HA guide ,火箭支持HA。我假设 StatefulSet应该用来支持这样的记录: ex
我是一名优秀的程序员,十分优秀!