1. 22 Oct, 2017 2 commits
  2. 19 Oct, 2017 1 commit
  3. 16 Oct, 2017 3 commits
  4. 13 Oct, 2017 1 commit
  5. 12 Oct, 2017 2 commits
  6. 09 Oct, 2017 2 commits
  7. 05 Oct, 2017 2 commits
  8. 03 Oct, 2017 2 commits
  9. 02 Oct, 2017 2 commits
  10. 01 Oct, 2017 2 commits
  11. 28 Sep, 2017 1 commit
  12. 23 Sep, 2017 3 commits
  13. 22 Sep, 2017 4 commits
  14. 18 Sep, 2017 2 commits
    • Tim Lewis's avatar
      Fix linux-sysvinit script to prevent missing caddy.log · fea8f37f
      Tim Lewis authored
      Create /var/log/caddy.log and chown prior to starting caddy.
      Caddy running as DAEMONUSER does not have permission to create the /var/log/caddy.log.
      fea8f37f
    • Tim Lewis's avatar
      Fix spurious .pid file error in linux-sysvinit · a8082520
      Tim Lewis authored
      This change eliminates the `[ERROR] Could not write pidfile: open /var/run/caddy.pid: permission denied` from caddy.log.
      The start-stop-daemon writes the file as root so the DAEMONUSER that caddy runs as cannot write to the .pid file.
      a8082520
  15. 16 Sep, 2017 2 commits
  16. 15 Sep, 2017 2 commits
  17. 12 Sep, 2017 5 commits
  18. 11 Sep, 2017 2 commits
    • Matthew Holt's avatar
      tls: Remove expiring certificates from cache and load renewed ones · 46ae4a66
      Matthew Holt authored
      Renewed certificates would not be reloaded into the cache because their
      names conflict with names of certificates already in the cache; this
      was intentional when loading new certs to avoid confusion, but is
      problematic when renewing, since the old certificate doesn't get
      evicted from the cache. (Oops.)
      
      Here, I remedy this situation by explicitly deleting the old cert from
      the cache before adding the renewed one back in.
      46ae4a66
    • Matthew Holt's avatar
      Implement Caddy-Sponsors HTTP response header · 56453e96
      Matthew Holt authored
      (See EULA.) Personally-licensed official Caddy builds cannot remove
      this header by configuration. The commercially-licensed builds of Caddy
      don't have this header.
      56453e96