作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 nginx 配置
upstream domain1 {
server 127.0.0.1:3000;
server 127.0.0.1:3001;
}
server {
listen 80;
server_name demo.domain.com;
root /var/apps/myapp/public;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
if (-f $request_filename/index.html) {
rewrite (.*) $1/index.html break;
}
if (-f $request_filename.html) {
rewrite (.*) $1.html break;
}
if (!-f $request_filename) {
proxy_pass http://domain1;
break;
}
}
location /mail_us1 {
proxy_pass http://127.0.0.1:1080;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
}
}
我正在尝试设置mailcatcher在我的服务器上(mailcatcher 在 1080
端口运行)
由于我在 nginx 方面的经验有限,我认为以下指令会很好地工作
location /mail_us1 {
proxy_pass http://127.0.0.1:1080;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
}
但不幸的是,我无法获得所需的输出,并且我不断登陆 nginx 页面,指出
No Dice
The message you were looking for does not exist, or doesn't have content of this type.
谁能告诉我我做错了什么
注意:
- curl http://localhost:1080 (work )
- iptables -L (is empty)
最佳答案
这对我有用:
location /mailcatcher {
rewrite /mailcatcher/(.*) /$1 break;
proxy_pass http://mailcatcher/;
}
location ~ ^/assets {
proxy_pass http://mailcatcher;
}
location ~ ^/messages {
proxy_pass http://mailcatcher;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
关于nginx - 无法使用 nginx 代理传递 mailcather,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26697767/
我有以下 nginx 配置 upstream domain1 { server 127.0.0.1:3000; server 127.0.0.1:3001; } server { list
我是一名优秀的程序员,十分优秀!