Skip to content

Commit

Permalink
Fix Caddyfile when env var values contain spaces (#786)
Browse files Browse the repository at this point in the history
  • Loading branch information
francislavoie authored Dec 21, 2023
1 parent 7df6da4 commit 08e08ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Commands/stubs/Caddyfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
admin localhost:{$CADDY_SERVER_ADMIN_PORT}

frankenphp {
worker {$APP_PUBLIC_PATH}/frankenphp-worker.php {$CADDY_SERVER_WORKER_COUNT}
worker "{$APP_PUBLIC_PATH}/frankenphp-worker.php" {$CADDY_SERVER_WORKER_COUNT}
}
}

Expand All @@ -24,7 +24,7 @@
}

route {
root * {$APP_PUBLIC_PATH}
root * "{$APP_PUBLIC_PATH}"
encode zstd gzip

# Mercure configuration is injected here...
Expand Down

0 comments on commit 08e08ec

Please sign in to comment.