diff options
author | Martin Ashby <martin@ashbysoft.com> | 2023-08-28 21:01:45 +0100 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2023-08-28 21:01:45 +0100 |
commit | ee968254708395548f62f5d427489ab15fbf5528 (patch) | |
tree | 46f48722c54a3f472f5911bbe3596bb8f569b16a | |
parent | 9075971696cae25228779e9deb9dba113b3d1b43 (diff) | |
download | mfashby.net-ee968254708395548f62f5d427489ab15fbf5528.tar.gz mfashby.net-ee968254708395548f62f5d427489ab15fbf5528.tar.bz2 mfashby.net-ee968254708395548f62f5d427489ab15fbf5528.tar.xz mfashby.net-ee968254708395548f62f5d427489ab15fbf5528.zip |
Add env example in caddyfile
Use baseline CPU. Raspberry pi doesn't have some SHA extensions that
pinebook pro does, which caused illegal instruction errors trying to
send mail over TLS.
-rw-r--r-- | Caddyfile | 4 | ||||
-rwxr-xr-x | deploy.sh | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -6,7 +6,9 @@ http://localhost:8080 { root * public # API server - cgi /api/* comments/zig-out/bin/comments + cgi /api/* comments/zig-out/bin/comments { + env NOTIFICATION_ADDRESS=martin@mfashby.net SMTP_SERVER=mail.mfashby.net:587 SMTP_USERNAME=comments@mfashby.net SMTP_PASSWORD=foobar + } # Redirects for old assets redir /10-11-21-longboard-slides.mp4 /assets/10-11-21-longboard-slides.mp4 permanent @@ -12,7 +12,7 @@ then echo "must build on aarch64 for now" exit fi -zig build -Doptimize=ReleaseSafe +zig build -Doptimize=ReleaseSafe -Dcpu=baseline popd # TODO update caddy with offline message while site being updated |