NginxInstaller/index.html
2023-12-19 08:35:51 -06:00

36 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Nginx Installer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main">
<label for="link">
<p>nginx archive <a href="https://nginx.org/download/" target=”_blank”>(copy link here)</a></p>
<input type="text" id="link">
</label>
<label for="extMod">
<p>Include recommended modules (<a href="https://github.com/openresty/headers-more-nginx-module" target="_blank">more headers</a> & <a href="https://github.com/google/ngx_brotli" target="_blank">brotli compression</a>)</p>
<input type="checkbox" id="extMod" checked>
<span class="checkmark"></span>
</label>
<label for="http3">
<p>HTTP/3:</p>
<input type="checkbox" id="http3">
<span class="checkmark"></span>
</label>
<label for="service">
<p>Run as service:</p>
<input type="checkbox" id="service">
<span class="checkmark"></span>
</label>
<button id="submit" class="centered-button">Generate Script</button>
<code lang="bash" id="script"></code>
</div>
<script src="app.js"></script>
</body>
</html>