From: Mukund Sivaraman <muks@mukund.org>
To: Kyle Meyer <kyle@kyleam.com>
Cc: meta@public-inbox.org
Subject: Re: Message-ID not found
Date: Wed, 25 May 2022 11:35:54 +0530 [thread overview]
Message-ID: <Yo3HQs5UOBs4okyd@d1> (raw)
In-Reply-To: <Yo2SGwB54Kh4c8nX@d1>
Hi Kyle
On Wed, May 25, 2022 at 07:49:07AM +0530, Mukund Sivaraman wrote:
> > Could there be something in your setup that's doing the second round of
> > percent-encoding?
>
> nginx is a reverse-proxy in front of public-inbox-httpd. I'll check if
> it breaks anything.
It was a problem with the nginx reverse-proxy config. I updated it, and
it works now. Thank you for checking, and esp. pointing out that it
worked directly with public-inbox-httpd.
For anyone else who searches and finds this thread, a working nginx
configuration with proxy_pass follows, where proxy_pass must not include
a trailing '/':
# create an upstream
upstream inbox_proxy_backend {
server unix:/run/inbox/inbox.sock fail_timeout=0;
keepalive 32;
}
server {
# other server config
# ...
location / {
proxy_pass http://inbox_proxy_backend;
include proxy_params;
}
}
Mukund
next prev parent reply other threads:[~2022-05-25 6:06 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-24 22:31 Message-ID not found Mukund Sivaraman
2022-05-24 23:39 ` Kyle Meyer
2022-05-24 23:59 ` Mukund Sivaraman
2022-05-25 1:44 ` Kyle Meyer
2022-05-25 2:19 ` Mukund Sivaraman
2022-05-25 6:05 ` Mukund Sivaraman [this message]
2022-05-25 9:00 ` Eric Wong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://public-inbox.org/README
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Yo3HQs5UOBs4okyd@d1 \
--to=muks@mukund.org \
--cc=kyle@kyleam.com \
--cc=meta@public-inbox.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).