mirror of
https://github.com/XTLS/Xray-examples.git
synced 2024-11-12 20:03:27 +00:00
18 lines
402 B
Caddyfile
18 lines
402 B
Caddyfile
xx.com {
|
|
log {
|
|
level DEBUG
|
|
}
|
|
root * /var/www
|
|
file_server
|
|
tls CA.crt priv.key # 换成你的证书和私钥,绝对路径
|
|
|
|
reverse_proxy /path 127.0.0.1:2001 {
|
|
transport http {
|
|
tls
|
|
tls_client_auth CA.crt priv.key # 换成你的证书和私钥,绝对路径
|
|
tls_server_name xx.com
|
|
versions 3
|
|
}
|
|
}
|
|
}
|