# After applying SSL the Login is not showing

**URL:** https://community.sonatype.com/t/after-applying-ssl-the-login-is-not-showing/1770
**Category:** Sonatype Nexus Repository
**Created:** [May 10, 2019, 9:17am UTC](https://community.sonatype.com/t/after-applying-ssl-the-login-is-not-showing/1770 "2019-05-10T09:17:22Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![vignesh.k](https://avatars.discourse-cdn.com/v4/letter/v/e79b87/32.png) [@vignesh.k](https://community.sonatype.com/u/vignesh.k)
#### Post date: [May 10, 2019, 9:17am UTC](https://community.sonatype.com/t/after-applying-ssl-the-login-is-not-showing/1770/1 "2019-05-10T09:17:22Z")

</div>

We are using Nexus Repository Manager version OSS 3.15.2-01,  
We using Let’sencrypt for SSL, And we are using Nginx for the proxy server.  
After applying SSL for Nexus repository, we could not able to see the login screen,  
The login screen is seen in the IP but in URL it’s not showing the login screen,  
Here I have attached the screenshot of the error which we facing.  
Can anybody help me with this?

 ![Screenshot%20from%202019-05-10%2014-47-19](https://canada1.discourse-cdn.com/flex047/uploads/communitysonatype/original/1X/1a4a58a67e6252f9acc6629bca90252d8538dcd5.png)

---

<div class="post-metadata">

### Author: ![rseddon](https://yyz1.discourse-cdn.com/flex047/user_avatar/community.sonatype.com/rseddon/32/341_2.png) [@rseddon](https://community.sonatype.com/u/rseddon)
#### Post date: [May 10, 2019, 1:31pm UTC](https://community.sonatype.com/t/after-applying-ssl-the-login-is-not-showing/1770/2 "2019-05-10T13:31:37Z")

</div>

Is nginx configured using our recommended settings?

[https://help.sonatype.com/display/NXRM3/Run+Behind+a+Reverse+Proxy#RunBehindaReverseProxy-nginx.2](https://help.sonatype.com/display/NXRM3/Run+Behind+a+Reverse+Proxy#RunBehindaReverseProxy-nginx.2)

---

<div class="post-metadata">

### Author: ![jose.alvarez](https://avatars.discourse-cdn.com/v4/letter/j/c89c15/32.png) [@jose.alvarez](https://community.sonatype.com/u/jose.alvarez)
#### Post date: [March 16, 2020, 8:36pm UTC](https://community.sonatype.com/t/after-applying-ssl-the-login-is-not-showing/1770/3 "2020-03-16T20:36:55Z")

</div>

i believe i have my configuration close to what is needed but i keep getting connection refused…when attempting docker login can you provide any suggestions for setting up the configuration … here is a sample

```
    index index.html index.htm index.nginx-debian.htm index.jsp;
    server_name dev.ilab.zone ; # managed by Certbot

    location / {
            # First attempt to serve request as file, then
            # as directory, then fall back to displaying a 404.
            try_files $uri $uri/ =404;
            proxy_pass http://10.0.67.229:8090/;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $remote_addr;
            proxy_set_header Host $host;

            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto "https";

```

}
