grain.social is a photo sharing platform built on atproto.

feat: add proxy headers for upgrade and connection in nginx configuration for appview

Changed files
+2
services
nginx
+2
services/nginx/nginx.conf
··· 52 location / { 53 proxy_pass $appview; 54 proxy_set_header Host $host; 55 } 56 } 57 }
··· 52 location / { 53 proxy_pass $appview; 54 proxy_set_header Host $host; 55 + proxy_set_header Upgrade $http_upgrade; 56 + proxy_set_header Connection $connection_upgrade; 57 } 58 } 59 }