FreshRss issue with Nginx

Hi,

I use let’s encrypt to manage my cert for my home domain.

Few days ago I noticed that I cannot connect to a subdomain.

The error I see is

# 400 Bad Request - nginx/1.18.0

I check web app and it’s working fine. Also The cert is right.

I did not changed anything is my config, just updated my containers.

Can someone please help me?

Below config for the web app - FreshRSS - freshrss.subdomain.conf

# make sure that your dns has a cname set for freshrss

server {
    listen 443 ssl;
    listen [::]:443 ssl;

    server_name freshrss.*;

    include /config/nginx/ssl.conf;

    client_max_body_size 0;

    # enable for ldap auth, fill in ldap details in ldap.conf
    #include /config/nginx/ldap.conf;

    location / {
        # enable the next two lines for http auth
        #auth_basic "Restricted";
        #auth_basic_user_file /config/nginx/.htpasswd;

        # enable the next two lines for ldap auth
        #auth_request /auth;
        #error_page 401 =200 /login;

        include /config/nginx/proxy.conf;
        resolver 127.0.0.11 valid=30s;
        set $upstream_freshrss freshrss;
        proxy_pass http://$upstream_freshrss;
        
        proxy_redirect off;
        proxy_buffering off;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-Port $server_port;
        proxy_cookie_path / "/; HTTPOnly; Secure";
        proxy_set_header Authorization $http_authorization;
        proxy_pass_header Authorization;
    }
}

I’m not sure if this community is the right place for general nginx configuration/debugging issues. nginx has documentation for logging and debugging.

You point me to the right direction. Issue solved :slight_smile:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.