Replies: 6 comments 6 replies
-
Currently - WGDashboard does not yet support HTTPS, Donald is working on that. Let me know if that helps! |
Beta Was this translation helpful? Give feedback.
-
I have added my .key and .crt to src/gunicorn.conf.py:
Now gunicorn is using these files for https... with the configured port. BUT... every update of WGDashboard resets these setting ;-) |
Beta Was this translation helpful? Give feedback.
-
Doesn’t proxing work ?
Like Nginx:
server {
listen 443 ssl;
server_name your_domain_name.com;
ssl_certificate /path/to/your/certificate.crt;
ssl_certificate_key /path/to/your/certificate.key;
location / {
proxy_pass http://localhost:5000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
Adam Lewis
… On Nov 18, 2024, at 12:17 PM, dselen ***@***.***> wrote:
Currently - WGDashboard does not yet support HTTPS, Donald is working on that.
If you use the container version you can setup: https://hub.docker.com/r/jc21/nginx-proxy-manager for HTTPS certificates! I do this myself.
Let me know if that helps!
—
Reply to this email directly, view it on GitHub <#504 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ANMJRYVZUN5NJ5ORYMWTA4T2BI4NHAVCNFSM6AAAAABR7OPTO2VHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCMRZGU4TMMY>.
You are receiving this because you are subscribed to this thread.
|
Beta Was this translation helpful? Give feedback.
-
I have it working with my caddy reverse proxy using:
Caddy handles the certificate and I am able to access using TLS |
Beta Was this translation helpful? Give feedback.
-
Hi all, I'm creating a workflow to manage SSL certs to use on WGDashboard, basically there will be a |
Beta Was this translation helpful? Give feedback.
-
Just created a PR: #554 If you would like to test it out, please follow the guide in the PR :) Let me know if this works for you or not ;) |
Beta Was this translation helpful? Give feedback.
-
Hi all,
I would like to enable HTTPS in the WG Dashboard, as using it with HTTP is not secure for me because someone could sniff the traffic and discover my password for the Web GUI.
I have searched on the documentation and on Internet but I haven't found anything about how to do it.
I'm using a containerized way of WGDashboard. Is this an option that could be enabled someway or should I use reverse proxy servers or something similar to do it?
Thanks a lot :)
Beta Was this translation helpful? Give feedback.
All reactions