Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Caddy Proxy help
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Caddy Proxy help

Anyone using Caddy as a reverse proxy ?

i am basically trying to pass all request through it. the server where caddy is installed will act as a reverse proxy just like a nginx one.

In nginx i do :

server {
listen 0.0.0.0:80;
server_name _;

location / {
    proxy_pass  http://backendIP;

}

well how to replicate this on caddy

Comments

Sign In or Register to comment.