From f99092bee8895b8d1691291908d0a1533626ce24 Mon Sep 17 00:00:00 2001 From: din9xtr Date: Wed, 14 Jan 2026 21:46:42 +0000 Subject: [PATCH] https off --- Caddyfile | 3 +++ docker-compose.yml | 14 +++++++------- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/Caddyfile b/Caddyfile index e8fb19b..760e5ee 100644 --- a/Caddyfile +++ b/Caddyfile @@ -1,3 +1,6 @@ +{ + auto_https off +} :80 { root * /var/www/public php_server { diff --git a/docker-compose.yml b/docker-compose.yml index 5211038..a78cc3f 100755 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,17 +11,17 @@ services: - .:/var/www - ./db:/var/db - ./php/php.ini:/usr/local/etc/php/conf.d/uploads.ini - - ./Caddyfile:/etc/frankenphp/Caddyfile - - caddy_data:/data - - caddy_config:/config + - ./Caddyfile:/etc/frankenphp/Caddyfile +# - caddy_data:/data +# - caddy_config:/config env_file: - .env tty: false healthcheck: - test: [ "CMD", "curl", "-kf", "https://localhost/" ] + test: [ "CMD", "curl", "-kf", "http://localhost/" ] interval: 30s timeout: 10s retries: 3 -volumes: - caddy_data: - caddy_config: \ No newline at end of file +#volumes: +# caddy_data: +# caddy_config: