backend for xcvr appview
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

add nginx config

+18
+18
nginx/xcvr.conf
··· 1 + server { 2 + listen 80; 3 + server_name xcvr.chat; 4 + 5 + root /var/www/xcvr/dist; 6 + index index.html; 7 + 8 + location / { 9 + try_files $uri /index.html; 10 + } 11 + 12 + location /xrpc/ { 13 + proxy_pass http://localhost:8080; 14 + proxy_set_header Host $host; 15 + proxy_set_header X-Real-IP $remote_addr; 16 + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 17 + } 18 + }