次のnginx confがあります
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;
}
}
サーバーにメールキャッチャーをセットアップしようとしています (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)