Caddy returns 308 or 404 on static file

1. The problem I’m having:

I wanted to try and host a static site on my caddy web server. I’m running caddy through docker compose and have added my site directory in the same directory as my compose.yml. I added the ./site:/var/www/html directive in volumes to mount the site to the internal storage. Now, when I try to open the caddy server it responds with either a 404 error on the 80 port or a 308 error on my FQDN.

2. Error messages and/or full log output:

*   Trying 192.168.5.102:80...
* Connected to 192.168.5.102 (192.168.5.102) port 80
> GET / HTTP/1.1
> Host: 192.168.5.102
> User-Agent: curl/8.7.1
> Accept: */*
> 
* Request completely sent off
< HTTP/1.1 404 Not Found
< Server: Caddy
< Date: Sun, 30 Mar 2025 20:25:20 GMT
< Content-Length: 0
< 
* Connection #0 to host 192.168.5.102 left intact

3. Caddy version:

2.9.1

4. How I installed and ran Caddy:

a. System environment:

I’m running in a docker compose with the following file:

Docker is running on a debian system, which is up to date within docker.

b. Command:

docker compose up -d

c. Service/unit/compose file:

services:
  caddy:
    container_name: caddy
    networks:
      - caddy
    image: caddy:alpine
    restart: unless-stopped
    ports:
      - '80:80'
      - '443:443'
      - '443:443/udp'
      - '8080:8080'
      - '8080:8080/udp'
    volumes:
      - ./caddy:/etc/caddy
      - ./caddy_data:/data
      - ./caddy_config:/config
      - ./site:/var/www/html
    command: "sh -c 'caddy fmt -w /etc/caddy/Caddyfile && caddy run --config /etc/caddy/Caddyfile --adapter caddyfile'"
networks:
  caddy:
    external: true
    name: caddy
    driver: bridge

d. My complete Caddy config:

:80 {
	# Set this path to your site's directory.
	root * /var/www/html

	# Enable the static file server.
	file_server
}

5. Links to relevant resources:

After a nights sleep and some more debugging, I figured out that the command I was running from the docker compose was breaking stuff. After removing the command, everything was working fine.

1 Like