Skip to content

Instantly share code, notes, and snippets.

@BirkhoffLee
Created December 14, 2022 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BirkhoffLee/cc811d5bb8d5b073179a119ee5c25f33 to your computer and use it in GitHub Desktop.
Save BirkhoffLee/cc811d5bb8d5b073179a119ee5c25f33 to your computer and use it in GitHub Desktop.
Caddy on Docker for SPA website (e.g. Vue Router)
:3000 {
root * /app
try_files {path}.html {path} /index.html
file_server
header {
-server
}
}
FROM caddy:2.6.2
ADD ./dist/ /app
COPY ./Caddyfile /etc/caddy/Caddyfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment