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 52 location / { 53 53 proxy_pass $appview; 54 54 proxy_set_header Host $host; 55 + proxy_set_header Upgrade $http_upgrade; 56 + proxy_set_header Connection $connection_upgrade; 55 57 } 56 58 } 57 59 }