Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history

Caddyfile

Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.

CaddyfileBlame26 lines · 1 contributor
5843260Dictation App1# Caddy reverse proxy for the metal-box deploy (45.76.171.37).
2# Automatic HTTPS via Let's Encrypt — DNS already points here so HTTP-01 works.
3# Swap ACME_EMAIL when a real ops mailbox exists.
4
5{
6 email ops@gluecron.com
7}
8
9gluecron.com, www.gluecron.com {
10 encode gzip zstd
11 reverse_proxy gluecron:3000
12
13 log {
14 output file /var/log/caddy/gluecron.log {
15 roll_size 50mb
16 roll_keep 7
17 }
18 format json
19 }
20
21 header {
22 Strict-Transport-Security "max-age=31536000; includeSubDomains"
23 X-Content-Type-Options nosniff
24 Referrer-Policy strict-origin-when-cross-origin
25 }
26}