160 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
73
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
183
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
282
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
361
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
181
views
resolve OpenSign Self-Hosting Issue. (specifically including an attachment in an email)
Help with OpenSign Self-Hosting Issue
Hey everyone, I'm trying to self-host OpenSign using Docker and I'm running into a strange issue. I've got the setup running in production, and SMTP emails are ...
1
vote
0
answers
382
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
1
answer
97
views
Switch production / development
I have a Debian VPS where I use a monorepo with Strapi (V5) and Next.js (V15).
My project is called strapi-next, and I have 2 folders, frontend (Next.js) and backend (Strapi).
Everything works fine, ...
1
vote
0
answers
60
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
0
answers
98
views
Symfony with Mercure and Caddy not working
I have a project that I deployed with SSL certificate with Apache to do some visualization tests in "online" rather than local.
I was trying to set up Mercure using the Symfony Bundle and ...
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
259
views
Configuring Socket.io and Caddy
I am trying to set up a socket server between my node backend and React frontend and am using Caddy as my reverse proxy. I am having trouble getting a connection once Caddy was introduced into the ...
1
vote
0
answers
359
views
Caddy not serving html index
I am trying to use caddy to serve some static files for a local development API
my compose file:
services:
caddy:
container_name: caddy_api
image: caddy
restart: unless-stopped
ports:...
Sam's user avatar
- 1,868
-1
votes
1
answer
338
views
alias a single file in caddy?
I want to serve a simple folder as website and then, in a subfolder, I wan to serve a few specific files from another root location (not the whole folder, just a few files).
Sadly, this does not work:
...
0
votes
1
answer
75
views
Nginx - How to get the Real Client ISP instead of Reverse Proxy ISP
I am having a backend webserver which works based on Nginx is being hidden behind a Reverse Proxy. I have managed to get the IP and Country of the Client but the issue is with the ISP. I need to know ...