375 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
94
views
Node is 'unable to get local issuer certificate' trying to access docker container over locally signed HTTPS connection [closed]
In a Playwright test, I want to fetch emails collected by mailpit from its API to verify that the process I triggered in the browser actually succeeds. My mailpit container is running behind a Caddy ...
0
votes
1
answer
72
views
How to translate caddy to ingress nginx controller
I'm having this config from Caddy and I want to migrate it to ingress nginx controller
@restrictAccess {
path /path1/loc1/*
path /path2/loc3/*
}
route @restrictAccess {
...
1
vote
0
answers
180
views
self-host plane : Error: adapting config using caddyfile: /etc/caddy/Caddyfile:3: unrecognized global option: reverse_proxy
I am trying to self-host plane on my pc, so I git clone the following repo:
https://github.com/makeplane/plane.git
and try to run docker compose up:
docker compose up -d
WARN[0000] Found orphan ...
1
vote
0
answers
97
views
Is there a better way to remove trailing slashes in Caddy 2 (FrankenPHP) config?
The problem:
I need to remove trailing slashes from an URLs, but preserve URL query if it exists.
Examples:
/support/ => /support
/support/?id=123 => /support?id=123
My current working config ...
1
vote
0
answers
279
views
Caddy reverse proxy configuration without ACME, with strict SNI
I want to use Caddy as a reverse proxy for my system. The system contains a backend running on localhost:8080 to which all traffic is redirected. The proxy listens for HTTP traffic on :80 and for ...
-1
votes
1
answer
352
views
How to reverse proxy Websocket via Caddy using HTTPS outside and HTTP inside?
Reverse proxying https://example.net to http://localhost:8080 works fine with Caddy reverse_proxy.
Reverse proxying ws://example.net to ws://localhost:8080 works also fine with Caddy reverse proxy.
...
0
votes
0
answers
88
views
Support die/exit on FrankenPHP(Caddy) worker mode
My PHP app runs on a Caddy webserver, over a FrankenPHP container (Dunglas image). It runs in worker mode.
Unfortunately, it seems that workers prevent abrupted interruptions of the process. So is not ...
0
votes
0
answers
52
views
Localization in laravel with mcamara/laravel-localization while on FrankenPHP
Can't seem to get internationalized routes to work when running on FrankenPHP.
Tried clearing the cache, restarting the server after rebuilding routes. But still, as soon I try to access ...
1
vote
0
answers
378
views
n8n in Docker behind Caddy reverse proxy adds port 5678 to webhook URLs
I'm running n8n inside Docker on a virtual server and using Caddy as a reverse proxy to expose it over HTTPS.
The setup works fine — I can access the n8n UI via https://example.com (served on port 443)...
0
votes
0
answers
356
views
Caddy can't get TLS certificate under rootful podman
I'm trying to get caddy to run as a reverse proxy for some other services. To do this, I'm running it in a podman-compose configuration as root. However, when running podman-compose up as root, it ...
1
vote
0
answers
59
views
Caddy php_fastcgi give no result
Im currently using nginx as a reverse proxy,
And i wanted to try Caddy to do the same !
To explain 1 have 2 services : 1php and 1go
The php is a backend that you use by calling /api/<.....>
The ...
0
votes
1
answer
235
views
Why does this simple Dockerfile fail for Caddy container
localhost {
root * /testDir
file_server
reverse_proxy /api/* localhost:3000
}
// And dockerfile
FROM caddy:2.7.6-alpine
EXPOSE 80
EXPOSE 443
COPY Caddyfile /etc/caddy/...
0
votes
0
answers
53
views
Socket.io with pm2 cluster mode
I am running a node app via pm2 using cluster mode (-i 4) and this same node app uses socket.io and since running in cluster mode, I have been not been able to connect to the socket.
I have followed ...
0
votes
0
answers
44
views
Serving static assets on local node microservices with caddy
I have a couple of React applications running locally with WDS on different ports.
landing - running on port 3000 (http://localhost:3000)
account - running on port 3100 (http://localhost:3100)
help - ...
0
votes
1
answer
245
views
AWS API Gateway cache "giving x-cache: Miss from cloudfront" while cache cluster and ttl is enabled on required get method
I have setup an api gateway for a suggestions api hosted on aws ecs fargate behind an application load balancer. i have enabled cache for api gateway stage and respective get method with TTL set to ...