20 lines
530 B
Text
20 lines
530 B
Text
# listen to all reverse proxy domains
|
|
%for %%domain in %%revprox_client_external_domainnames
|
|
https://%%domain {
|
|
# import reverse proxy certificate
|
|
# do not try to check zerossl and let's encrypt file
|
|
tls %%revprox_client_cert_file %%revprox_client_key_file {
|
|
ca_root %%revprox_client_ca_file
|
|
}
|
|
# log to the console
|
|
log {
|
|
output stdout
|
|
format console
|
|
level info
|
|
}
|
|
# root directory
|
|
root * %%caddy_root_directory
|
|
# it's a file server
|
|
file_server
|
|
}
|
|
%end for
|