Add files
This commit is contained in:
43
Caddyfile
Normal file
43
Caddyfile
Normal file
@ -0,0 +1,43 @@
|
||||
# vim: ft=caddyfile
|
||||
{
|
||||
import email
|
||||
}
|
||||
|
||||
#{
|
||||
# servers :443 {
|
||||
# protocol {
|
||||
# experimental_http3
|
||||
# }
|
||||
# }
|
||||
#}
|
||||
|
||||
(basicerrors) {
|
||||
handle_errors {
|
||||
#respond "{http.error.status_code} {http.error.status_text}"
|
||||
|
||||
rewrite * /{http.error.status_code}.jpg
|
||||
root * /var/www/errors
|
||||
file_server
|
||||
}
|
||||
}
|
||||
|
||||
(matrix-well-known) {
|
||||
handle /.well-known/matrix/* {
|
||||
header Access-Control-Allow-Origin "*"
|
||||
header Access-Control-Allow-Methods "GET, POST, PUT, DELETE, OPTIONS"
|
||||
header Access-Control-Allow-Headers "Origin, X-Requested-With, Content-Type, Accept, Authorization"
|
||||
header Content-Type "application/json"
|
||||
|
||||
respond /.well-known/matrix/client 200 {
|
||||
body `{"m.homeserver": {"base_url": "https://matrix.boba.best"}}`
|
||||
close
|
||||
}
|
||||
respond /.well-known/matrix/server 200 {
|
||||
body `{"m.server": "matrix.boba.best:443"}`
|
||||
close
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
import conf.d/*
|
||||
import conf.d/*
|
Reference in New Issue
Block a user