2022-09-09 08:17:38 +00:00
|
|
|
|
# Trojan-gRPC-Caddy2/Nginx
|
2023-04-06 00:57:50 +00:00
|
|
|
|
[ENGLISH](README.ENG.md)
|
|
|
|
|
|
2022-09-09 08:17:38 +00:00
|
|
|
|
## 原理图 (Caddy) :
|
|
|
|
|
Xray client <--- gRPC(TLS) ---> Caddy2 <--- gRPC(cleartext) ---> Xray server
|
|
|
|
|
## Nginx:
|
|
|
|
|
同时,您也可以选择使用 Nginx。示例配置片段如下(部分来自 [@xqzr](https://github.com/xqzr)):
|
|
|
|
|
```conf
|
|
|
|
|
server {
|
2023-12-04 09:38:28 +00:00
|
|
|
|
listen 443 ssl http2;
|
|
|
|
|
listen [::]:443 ssl http2;
|
2022-09-09 08:17:38 +00:00
|
|
|
|
server_name example.com;
|
|
|
|
|
|
|
|
|
|
index index.html;
|
|
|
|
|
root /var/www/html;
|
|
|
|
|
|
|
|
|
|
ssl_certificate /path/to/example.cer;
|
|
|
|
|
ssl_certificate_key /path/to/example.key;
|
|
|
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
|
|
|
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
|
|
|
|
|
|
2023-12-04 09:38:28 +00:00
|
|
|
|
client_header_timeout 1w;
|
2024-01-29 12:50:34 +00:00
|
|
|
|
keepalive_timeout 30m;
|
2022-09-09 08:17:38 +00:00
|
|
|
|
# 在 location 后填写 /你的 ServiceName
|
|
|
|
|
location /你的 ServiceName {
|
2024-08-02 14:33:20 +00:00
|
|
|
|
if ($content_type !~ "^application/grpc") {
|
2022-09-09 08:17:38 +00:00
|
|
|
|
return 404;
|
|
|
|
|
}
|
|
|
|
|
client_max_body_size 0;
|
|
|
|
|
client_body_buffer_size 512k;
|
|
|
|
|
grpc_set_header X-Real-IP $remote_addr;
|
2023-12-04 09:38:28 +00:00
|
|
|
|
client_body_timeout 1w;
|
|
|
|
|
grpc_read_timeout 1w;
|
|
|
|
|
grpc_send_timeout 1w;
|
2022-09-09 08:17:38 +00:00
|
|
|
|
grpc_pass unix:/dev/shm/Xray-Trojan-gRPC.socket;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|