Skip to content

Commit

Permalink
Another part of CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
smortex committed Jul 9, 2023
1 parent f33a719 commit 1a91fd9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
8 changes: 6 additions & 2 deletions files/etc/caddy/config/example1.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
#

localhost:3000 {
gzip
log /var/log/caddy/example1.log
encode {
gzip
}
log {
output file "/var/log/caddy/example1.log"
}
}
14 changes: 10 additions & 4 deletions files/etc/caddy/config/example2.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@
#

localhost:2500 {
root /var/www
ext .html .htm .php
gzip
log /var/log/caddy/example2.log
root * /var/www
encode {
gzip
match {
header Content-Type text/*
}
}
log {
output file /var/log/caddy/example2.log
}
}

0 comments on commit 1a91fd9

Please sign in to comment.