1. Caddy version (caddy version
):
v2.1.1h1:X9k1+ehZPYYrSqBvf/ocUgdLSRIuiNiMo7CvyGUQKeA=
2. How I run Caddy:
a. System environment:
Manjaro Linux x64
b. Command:
sudo caddy run
d. My complete Caddyfile or JSON config:
{
auto_https off
}
(theheaders) {
header Host {host}
header X-Forwarded-For {remote_host}
header X-Forwarded-Proto {scheme}
header X-Url-Scheme {scheme}
header X-Forwarded-Host {host}
}
:80 {
import theheaders
encode gzip
route /api* {
reverse_proxy :8000
}
route /media* {
reverse_proxy :8000
}
route /admin* {
reverse_proxy :8000
}
route /static* {
reverse_proxy :8000
}
reverse_proxy :3000
}
3. The problem I’m having:
Every time Next.js dev server sends a request to Webpack HMR the request doesn’t get sent and the page doesn’t update. Without proxying, e.g. without Caddy at all, the request gets sent and it works fine.
4. Error messages and/or full log output:
Every time a request is being sent to Webpack HMR, I get this in logs:
2020/08/10 15:03:02.545 INFO using adjacent Caddyfile
2020/08/10 15:03:02.547 INFO admin admin endpoint started {"address": "tcp/localhost:2019", "enforce_origin": false, "origins": ["[::1]:2019", "127.0.0.1:2019", "localhost:2019"]}
2020/08/10 18:03:02 [INFO][cache:0xc00069e300] Started certificate maintenance routine
2020/08/10 15:03:02.548 INFO tls cleaned up storage units
2020/08/10 15:03:02.549 INFO autosaved config {"file": "/root/.config/caddy/autosave.json"}
2020/08/10 15:03:02.549 INFO serving initial configuration
2020/08/10 15:04:08.939 ERROR http.handlers.reverse_proxy aborting with incomplete response {"error": "context canceled"}
2020/08/10 15:04:23.356 ERROR http.handlers.reverse_proxy aborting with incomplete response {"error": "context canceled"}
The request looks like this:
scheme http
host localhost
filename /_next/webpack-hmr
When I try to request it directly from the browser I get infinite loading and then Unable to connect
. I suspect I messed up somewhere in the config.
5. What I already tried:
I couldn’t find anything relevant on google everything with
Context cancelled
was unrelated. But I found some issues about Webpack dev server, but with nginx, and there they returned 404. In my case nothing is returned at all. Although, it works just fine without a proxy, e.g. localhost:3000/webpack-hmr/...