Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
55 views

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 { ...
Astin Gengo's user avatar
1 vote
0 answers
76 views

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 ...
Swayok's user avatar
  • 472
-1 votes
1 answer
198 views

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. ...
fhurlbrink's user avatar
0 votes
0 answers
39 views

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 ...
galdikas's user avatar
  • 1,691
0 votes
0 answers
274 views

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 ...
The Bic Pen's user avatar
  • 1,227
0 votes
1 answer
183 views

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/...
CupOfGreenTea's user avatar
0 votes
0 answers
43 views

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 - ...
r9dman's user avatar
  • 21
0 votes
1 answer
233 views

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 ...
Daniel Zamloot's user avatar
1 vote
0 answers
321 views

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
0 votes
0 answers
310 views

I'm struggling with how to set up docker-compose (or dockerfile) to work with Laravel Octane by default. I'm using basic things from https://frankenphp.dev/docs/docker/. I also changed Caddyfile to ...
Malyutki's user avatar
1 vote
0 answers
221 views

I am trying to run Redis (in the Docker container) behind a reverse proxy using Caddy. Therefore I have configured the Caddy server like this: example.com { reverse_proxy redis:6379 } mapping the ...
Corbie's user avatar
  • 1,154
0 votes
1 answer
67 views

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 ...
Ani's user avatar
  • 1
0 votes
0 answers
144 views

I have a working django asgi application that uses channels for websocket communication with daphne and redis, and is running in a dockerized setup. To enable the secure https protocol, I tried going ...
user279611's user avatar
2 votes
1 answer
208 views

I have a docker compose file with 4 containers. Caddy , Watchtower and Frontend and Backend Container. The front end is in React + vite. The backend is Node.js and Express. I have a shared volume ...
Hashir Ayaz's user avatar
0 votes
1 answer
168 views

I'm looking to upgrade our current laravel app, by using FrankenPHP to give it a performance boost. But I'm having issues when I try to deploy to our staging environment, so I'm trying to clone that ...
Eman's user avatar
  • 1,357
0 votes
2 answers
855 views

I'm trying to set up SSL for a domain that is pointing to a simple api. I'm running .net 8 and have a Caddy server set up as a reverse proxy, all set up using docker compose. I initially had nginx ...
ygetarts's user avatar
  • 944
1 vote
1 answer
653 views

I'm using caddy server in docker to reverse proxy to my nodejs servers. I'm passing UPSTREAMS env var as documented Here. But the UPSTREAMS are not recognized by caddy. reverse_proxy works fine if I ...
Inder's user avatar
  • 2,154
1 vote
0 answers
124 views

I have Caddy as my file server, with my Caddyfile: foobar.nl { redir https://www.{host}{uri} } www.foobar.nl { file_server browse reverse_proxy /wss59fps localhost:9090 ...
clankill3r's user avatar
  • 9,643
0 votes
1 answer
704 views

I want to serve my React app from a different route, so that I can keep all of my servers on the same container group. My Caddyfile looks like this: fqdn { handle_path /backend* { ...
Armaan Shah's user avatar
0 votes
1 answer
195 views

Caddy (2.8.4) is hosting a PHP application through FastCGI (PHP-FPM) but for some reason the $_SERVER['SCRIPT_NAME'] does not contain the full path when I use the caddy handle_path config. :80 { ...
Sebastian's user avatar
  • 6,239
0 votes
1 answer
66 views

I was wondering if the data folder for Caddy would work with multiple replicas of Caddy trying to do TLS verification with Lets Encrypt. This was a limitation on Traefik unless you opt for the ...
Archimedes Trajano's user avatar
0 votes
2 answers
2k views

I've a Raspberry Pi with a setup including PiHole and caddy. PiHole serves as local DNS server for the network, and caddy is used as reverse proxy on a generic corresponding service. Example: (DNS ...
crissal's user avatar
  • 2,657
1 vote
2 answers
1k views

The problem I'm having: I get a mixed content error when adding a reverse proxy before the Docker container running a Caddy server, PHP, MySQL and myPhpAdmin in another container. Here is my setup and ...
vorpXuser's user avatar
1 vote
1 answer
358 views

I am developing a web site with the frontend using NextJS, the backend is Strapi and I'd like to use Auth0 as the identity provider. I have configured Strapi to use Auth0 and this appears to be ...
BigDevJames's user avatar
  • 2,734
1 vote
1 answer
378 views

I want to set up Cadddy, MariaDB and PHP 8.2 with FPM for hosting a Shopware 6 production installation on a virtual server running AlmaLinux 9.I 'm very new to this so any tips are highly appreciated! ...
vorpXuser's user avatar

1
2 3 4 5
8