Initial commit: avc-phone-ai codebase + CLAUDE.md

This commit is contained in:
tocmo0nlord
2026-06-23 22:38:22 +00:00
parent 4bf72b9616
commit c3c719b77e
16 changed files with 1491 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# Maps the Connection header for WebSocket proxying. Goes in /etc/nginx/conf.d/ so it
# lives in the http{} context (a `map` can't go inside a server/location block).
# When a request carries `Upgrade: websocket`, send `Connection: upgrade`; otherwise
# `Connection: close`. Used by the voip.activeblue.net vhost for the /ws media stream.
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}