From 2f9cb53b793c6d34707ef809ef2520820d38415f Mon Sep 17 00:00:00 2001 From: NewName Date: Sat, 9 Nov 2024 15:23:32 +0800 Subject: [PATCH] 1 --- docker-compose.yml | 4 ++-- Caddyfile => web/Caddyfile | 0 index.html => web/index.html | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename Caddyfile => web/Caddyfile (100%) rename index.html => web/index.html (100%) diff --git a/docker-compose.yml b/docker-compose.yml index 1f40072..67073e8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,8 +6,8 @@ services: - "80:80" - "443:443" volumes: - - ./Caddyfile:/etc/caddy/Caddyfile - - ./index.html:/srv/index.html + - ./web/Caddyfile:/etc/caddy/Caddyfile + - ./web/index.html:/srv/index.html environment: - DOMAIN=example.com # 修改为你的域名 restart: always diff --git a/Caddyfile b/web/Caddyfile similarity index 100% rename from Caddyfile rename to web/Caddyfile diff --git a/index.html b/web/index.html similarity index 100% rename from index.html rename to web/index.html