Improve static file matching

This commit is contained in:
TEC 2022-10-17 00:58:19 +08:00
parent abd49debb7
commit 66eac8831b
Signed by: tec
SSH Key Fingerprint: SHA256:eobz41Mnm0/iYWBvWThftS0ElEs1ftBr6jamutnXc/A
2 changed files with 16 additions and 5 deletions

View File

@ -2,8 +2,10 @@ emacssurvey.tecosaur.net
@dynamic { @dynamic {
not path /css/* not path /css/*
not path /favicon.ico
not path /robots.txt
} }
reverse_proxy @dynamic localhost:8000 reverse_proxy @dynamic localhost:8000
root /css/* /opt/emacs-survey/public/css/ root * /opt/emacs-survey/public
file_server /css/style.css file_server

View File

@ -72,22 +72,31 @@ SETUPDIR=$(dirname "$(readlink --canonicalize-existing "$0")")
#+end_src #+end_src
** Caddy Config ** Caddy Config
:PROPERTIES:
:header-args:prog: :tangle Caddyfile
:END:
We just need to redirect to Genie for now, which makes for a rather simple We just need to redirect to Genie for now, which makes for a rather simple
config. The only complication is serving the static files through Caddy not config. The only complication is serving the static files through Caddy not
Genie, for performance reasons (Genie recommends against serving static files Genie, for performance reasons (Genie recommends against serving static files
with it). with it).
#+begin_src prog :tangle Caddyfile #+begin_src prog
emacssurvey.tecosaur.net emacssurvey.tecosaur.net
@dynamic { @dynamic {
not path /css/* not path /css/*
not path /favicon.ico
not path /robots.txt
} }
reverse_proxy @dynamic localhost:8000 reverse_proxy @dynamic localhost:8000
#+end_src
root /css/* /opt/emacs-survey/public/css/ We'll just pass all other requests to the public folder of the Emacs Survey.
file_server /css/style.css
#+begin_src prog
root * /opt/emacs-survey/public
file_server
#+end_src #+end_src
Just this one file is all it takes to get Caddy set up to our liking 🙂. Just this one file is all it takes to get Caddy set up to our liking 🙂.