<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Helvetica,sans-serif;" dir="ltr">
<p>That is exactly what I did.</p>
<p><br>
</p>
<p>On my Ubuntu server I installed nginx with the b<span style="font-size: 12pt;">elow</span><span style="font-size: 12pt;"> site </span><span style="font-size: 12pt;">config file, obviously replace $SERVER_IP with your own server address. Then also f</span><span style="font-size: 12pt;">ill
 in your HTTPS</span><span style="font-size: 12pt;"> key/cert files.</span></p>
<p><br>
</p>
<p><br>
</p>
<p></p>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">server {</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">        listen 80 default_server;</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">        listen [::]:80 default_server;</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">        listen 443 ssl default_server;</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">        listen [::]:443 ssl default_server;</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">        ssl_certificate /etc/nginx/ssl/cert.pem;</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">        ssl_certificate_key /etc/nginx/ssl/key.pem;</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">        ssl_dhparam /etc/nginx/ssl/dhparam.pem;</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">        root /var/www/html;</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">        index index.html index.htm index.nginx-debian.html;</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">        server_name _;</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">        location / {</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">                proxy_pass http://</span><b><span style="font-family: "Courier New", monospace; font-size: 10pt;">$SERVER_IP</span></b><span style="font-family: "Courier New", monospace; font-size: 10pt;">:8080;</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">        }</span></div>
<div><span style="font-family: "Courier New", monospace; font-size: 10pt;">}</span></div>
<br>
<p></p>
<br>
<br>
<div style="color: rgb(0, 0, 0);">
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>From:</b> Stork-users <stork-users-bounces@lists.isc.org> on behalf of Kevin P. Fleming <lists.stork-users@kevin.km6g.us><br>
<b>Sent:</b> Wednesday, October 18, 2023 10:05 AM<br>
<b>To:</b> stork-users@lists.isc.org<br>
<b>Subject:</b> Re: [stork-users] Stork Webserver HTTPS</font>
<div> </div>
</div>
<div>
<div>On Wed, Oct 18, 2023, at 10:56, Cody Shultz wrote:<br>
</div>
<blockquote type="cite" id="qt" style="">
<div class="qt-WordSection1">
<p style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;">
Hello,<br>
</p>
<p style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;">
 <br>
</p>
<p style="margin: 0in 0in 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;">
                I couldn’t find a definitive answer in the documentation. Is there a way to enable HTTPS for the Stork management interface? Thanks!<br>
</p>
</div>
</blockquote>
<div><br>
</div>
<div>Yes, by placing an HTTPS-enabled reverse proxy in front of it :-)<br>
</div>
</div>
</div>
</div>
</body>
</html>