<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[FusionAuth, Nginx inside Azure Container App]]></title><description><![CDATA[<p dir="auto">Trying to run FusionAuth inside container app using Nginx as a proxy to provide the required 443 Forwarded-Port header.</p>
<p dir="auto">When I try to access FusionAuth URl, it just spins before giving stream timeout. Here's my Nginx conf file.</p>
<pre><code>server {
    listen 80;
    server_name myserver.australiaeast.azurecontainerapps.io;

    location / {
        proxy_set_header    Host $host;
        proxy_set_header    X-Real-IP $remote_addr;
        proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header    X-Forwarded-Proto $scheme;
        proxy_set_header    X-Forwarded-Port '443';
        proxy_http_version  1.1;

        proxy_pass https://myserver.australiaeast.azurecontainerapps.io;
    }
}
</code></pre>
<p dir="auto">and here's the Dockerfile</p>
<pre><code>FROM fusionauth/fusionauth-app:latest
COPY ./fusionauth.properties /usr/local/fusionauth/config

FROM docker.io/library/nginx:latest
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
</code></pre>
<p dir="auto">Any help greatly appreciated!</p>
]]></description><link>https://fusionauth.io/community/forum/topic/2714/fusionauth-nginx-inside-azure-container-app</link><generator>RSS for Node</generator><lastBuildDate>Tue, 12 May 2026 12:27:24 GMT</lastBuildDate><atom:link href="https://fusionauth.io/community/forum/topic/2714.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 09 Jul 2024 14:11:15 GMT</pubDate><ttl>60</ttl></channel></rss>