UDP proxy was added

This commit is contained in:
Denis V. Dedkov
2026-02-26 14:07:08 +01:00
parent c3678db541
commit c988fd804f
2 changed files with 10 additions and 1 deletions

View File

@@ -19,7 +19,8 @@ services:
restart: unless-stopped
ports:
- "80:80"
- "443:443"
- "443:443/tcp"
- "443:443/udp"
volumes:
- ./angie.conf:/etc/angie/angie.conf:ro
- ./http.conf:/etc/angie/http.d/default.conf:ro

View File

@@ -18,3 +18,11 @@ server {
proxy_pass $upstream;
}
server {
listen 443 udp reuseport;
proxy_pass $upstream;
proxy_timeout 30s;
proxy_responses 0;
proxy_requests 1;
}