-
|
Hello, I have pulse running at internal IP 192.168.1.101:7655 and I can login no problem to Pulse. My second query is about applying an SSL certificate to pulse. Is there a step by step guide on using something such as certbot to do this, please? I must say that I am a noob, so I am sure this is an easy solution (please go gentle on me). Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
The different theme (dark vs light) between IP and DNS access suggests the browser is treating these as separate origins. Your login session and preferences are stored per-origin, so they won't transfer. A few things to check:
Regarding SSL: Pulse itself doesn't handle TLS termination. The common approach is to use a reverse proxy (Caddy, nginx, Traefik) that handles SSL and proxies to Pulse on the local port. Caddy is probably the easiest since it auto-provisions Let's Encrypt certificates. Basic Caddy config: That would give you HTTPS with auto-renewed certificates. |
Beta Was this translation helpful? Give feedback.


The different theme (dark vs light) between IP and DNS access suggests the browser is treating these as separate origins. Your login session and preferences are stored per-origin, so they won't transfer.
A few things to check:
Session issue: Try logging in fresh via the DNS URL. The IP login won't carry over to the DNS hostname since they're different origins from the browser's perspective.
Make sure you're using the same port: Confirm
http://pulse.mydomain.com:7655(with port) is correct.Firewall/DNS routing: Verify the DNS name actually routes to the same machine as the IP. You can test with
curl -v http://pulse.mydomain.com:7655to see what happens.Regarding SSL: Pulse itself…