this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add access logs to caddyfile

+25
+25
caddy/conf/Caddyfile
··· 20 20 } 21 21 22 22 {$HOST:localhost} { 23 + log prs { 24 + output stdout 25 + format console 26 + } 27 + 23 28 reverse_proxy prs:4321 24 29 } 25 30 ··· 30 35 31 36 32 37 dong.{$HOST:localhost} { 38 + log dong { 39 + output stdout 40 + format console 41 + } 42 + 33 43 encode 34 44 root /srv/dong-web 35 45 import error ··· 37 47 } 38 48 39 49 saltire-the-gays.{$HOST:localhost} { 50 + log saltire { 51 + output stdout 52 + format console 53 + } 54 + 40 55 encode 41 56 root /srv/saltire-the-gays 42 57 import error ··· 44 59 } 45 60 46 61 dnd.{$HOST:localhost} { 62 + log dnd { 63 + output stdout 64 + format console 65 + } 66 + 47 67 encode 48 68 root /srv/dnd 49 69 import error ··· 51 71 } 52 72 53 73 *.pds.{$HOST:localhost}, pds.{$HOST:localhost} { 74 + log pds { 75 + output stdout 76 + format console 77 + } 78 + 54 79 tls { 55 80 on_demand 56 81 }