[stork-users] Stork Webserver HTTPS
Justin Krejci
JKrejci at usinternet.com
Wed Oct 18 15:17:08 UTC 2023
That is exactly what I did.
On my Ubuntu server I installed nginx with the below site config file, obviously replace $SERVER_IP with your own server address. Then also fill in your HTTPS key/cert files.
server {
listen 80 default_server;
listen [::]:80 default_server;
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
ssl_certificate /etc/nginx/ssl/cert.pem;
ssl_certificate_key /etc/nginx/ssl/key.pem;
ssl_dhparam /etc/nginx/ssl/dhparam.pem;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
proxy_pass http://$SERVER_IP:8080;
}
}
________________________________
From: Stork-users <stork-users-bounces at lists.isc.org> on behalf of Kevin P. Fleming <lists.stork-users at kevin.km6g.us>
Sent: Wednesday, October 18, 2023 10:05 AM
To: stork-users at lists.isc.org
Subject: Re: [stork-users] Stork Webserver HTTPS
On Wed, Oct 18, 2023, at 10:56, Cody Shultz wrote:
Hello,
I couldn’t find a definitive answer in the documentation. Is there a way to enable HTTPS for the Stork management interface? Thanks!
Yes, by placing an HTTPS-enabled reverse proxy in front of it :-)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.isc.org/pipermail/stork-users/attachments/20231018/6fc71756/attachment-0001.htm>
More information about the Stork-users
mailing list