<div dir="ltr"><div><div><div><div>Hi,<br><br></div>I installed keycloak on a wildfly 10 server, I bought an installed the a certificate.  Everything seems to work accesing <a href="https://mydomain.com:8443/auth/">https://mydomain.com:8443/auth/</a><br><br></div>My problem comes with my reverse proxy.  I have other apps inside that wildfly, and they have their own domain and they work perfectly with the reverse proxy I set on. <br><br></div>When I access <a href="https://mydomain.com">https://mydomain.com</a>, i can see the first page of keycloak but none of the images work,the links are broken.<br><br><br></div><div>Should I enable something on my keycloak so it can work.<br><br></div><div>This is my block<br><br>upstream wildfly {<br>  server <a href="http://127.0.0.1:8443">127.0.0.1:8443</a> fail_timeout=0;<br>}<br><br><br>server {<br>       listen         80;<br>       server_name    <a href="http://mydomain.com">mydomain.com</a>;<br>       return         301 https://$server_name$request_uri;<br>}<br><br><br>server {<br>    listen 443 ssl;<br>    server_name  <a href="http://mydomain.com">mydomain.com</a>;<br><br>    ssl on;<br>    ssl_certificate /opt/wildfly/standalone/configuration/rrec/mydomain.com.crt;<br>    ssl_certificate_key /opt/wildfly/standalone/configuration/rrec/mydomain.com.rsa.key;<br>    access_log /var/log/nginx/mydomain.com-access.log;<br>    error_log /var/log/nginx/mydomain.com-error.log;<br><br><br>    location = / {<br>        return 301 <a href="https://mydomain.com/auth">https://mydomain.com/auth</a>;<br>    }<br><br><br>    location /auth {<br>        proxy_pass <a href="https://127.0.0.1:8443/auth/">https://127.0.0.1:8443/auth/</a>;<br>        proxy_set_header Host $host;<br>        proxy_set_header X-Real-IP $remote_addr;<br>        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;<br>        proxy_set_header X-Forwarded-Proto $scheme;<br>        proxy_set_header X-Forwarded-Port   443;<br>    }<br><br>}<br></div></div>