All IPs recorded as 127.0.0.1

Got it working! I had followed this guide, but didn’t realize I should have taken out the replace command for the Fastly CDN

I also added this to my container app.yml so it would recognize my upstream proxy.

- replace:
       filename: /etc/nginx/conf.d/discourse.conf
       from: keepalive_timeout 65;
       to: |
          keepalive_timeout 65;
          set_real_ip_from [proxy IP];
4 Likes