Redirection on inline moderation

  • Thread starter Thread starter gldtn
  • Start date Start date

gldtn

Guest
Member
I upgraded to a new instance on Linode from Ubuntu 20.04 to 22.04, and ever since I've been getting redirected to home page after inline moderation. Can someone shed a light as I can't figure it out what exactly has changed. I suspect it's something within nginx config..

My server blocks:​

NGINX:

Code:

Code:
server {
    listen 80;
    listen [::]:80;
    server_name domain.org www.domain.org;
    return 301 https://$host$request_uri;

    # Logs
    access_log...
Read more

Continue reading...
 
Top