Comment #⁨3⁩

In reply to Subarist Subarist

Hey,

I think I am having the same issue with RSS like you. What did you change in Nginx configuration?

  1. In reply to 0 0xZero

    0xZero,

    The default configuration of Waterhole should not have any issues.
    The reason I encountered this problem was that, for security reasons, I set up some file reading rules that caused the RSS to be blocked.
    After removing or modifying the security policy, everything worked fine.

    Something like the following:

    location ~ /\.(?:git|svn|rss|log|bak|sql|sh)$ {
        deny all;
    }