Select the types of activity you want to include in your feed.
1server { 2 listen 3000; 3 server_name _; 4 5 root /usr/share/nginx/html; 6 index index.html; 7 8 location / { 9 try_files $uri /index.html; 10 } 11}