2018-07-08 22:21:03 -04:00
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
2018-07-18 02:55:09 -04:00
|
|
|
<h5 class="modal-title"><%- i18n('proxy-hosts', 'form-title', {id: id}) %></h5>
|
2018-07-08 22:21:03 -04:00
|
|
|
<button type="button" class="close cancel" aria-label="Close" data-dismiss="modal"> </button>
|
|
|
|
</div>
|
2018-07-16 03:00:52 -04:00
|
|
|
<div class="modal-body has-tabs">
|
2018-07-08 22:21:03 -04:00
|
|
|
<form>
|
2018-07-16 03:00:52 -04:00
|
|
|
<ul class="nav nav-tabs" role="tablist">
|
2018-07-18 02:55:09 -04:00
|
|
|
<li role="presentation" class="nav-item"><a href="#details" aria-controls="tab1" role="tab" data-toggle="tab" class="nav-link active"><i class="fe fe-zap"></i> <%- i18n('all-hosts', 'details') %></a></li>
|
2018-07-18 19:47:55 -04:00
|
|
|
<li role="presentation" class="nav-item"><a href="#ssl-options" aria-controls="tab2" role="tab" data-toggle="tab" class="nav-link"><i class="fe fe-shield"></i> <%- i18n('str', 'ssl') %></a></li>
|
2018-08-22 00:31:03 -04:00
|
|
|
<li role="presentation" class="nav-item"><a href="#advanced" aria-controls="tab3" role="tab" data-toggle="tab" class="nav-link"><i class="fe fe-settings"></i> <%- i18n('all-hosts', 'advanced') %></a></li>
|
2018-07-16 03:00:52 -04:00
|
|
|
</ul>
|
|
|
|
<div class="tab-content">
|
|
|
|
<!-- Details -->
|
|
|
|
<div role="tabpanel" class="tab-pane active" id="details">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12 col-md-12">
|
|
|
|
<div class="form-group">
|
2018-07-18 02:55:09 -04:00
|
|
|
<label class="form-label"><%- i18n('all-hosts', 'domain-names') %> <span class="form-required">*</span></label>
|
2018-07-17 18:35:49 -04:00
|
|
|
<input type="text" name="domain_names" class="form-control" id="input-domains" value="<%- domain_names.join(',') %>" required>
|
2018-07-16 03:00:52 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-11 18:47:12 -05:00
|
|
|
<div class="col-sm-3 col-md-3">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="form-label"><%- i18n('proxy-hosts', 'forward-scheme') %><span class="form-required">*</span></label>
|
|
|
|
<select name="forward_scheme" class="form-control custom-select" placeholder="http">
|
|
|
|
<option value="http" <%- forward_scheme === 'http' ? 'selected' : '' %>>http</option>
|
|
|
|
<option value="https" <%- forward_scheme === 'https' ? 'selected' : '' %>>https</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-5 col-md-5">
|
2018-07-16 03:00:52 -04:00
|
|
|
<div class="form-group">
|
2018-10-19 01:38:14 -04:00
|
|
|
<label class="form-label"><%- i18n('proxy-hosts', 'forward-host') %><span class="form-required">*</span></label>
|
|
|
|
<input type="text" name="forward_host" class="form-control text-monospace" placeholder="" value="<%- forward_host %>" autocomplete="off" maxlength="50" required>
|
2018-07-16 03:00:52 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-4 col-md-4">
|
|
|
|
<div class="form-group">
|
2018-07-18 02:55:09 -04:00
|
|
|
<label class="form-label"><%- i18n('proxy-hosts', 'forward-port') %> <span class="form-required">*</span></label>
|
2018-07-17 18:35:49 -04:00
|
|
|
<input name="forward_port" type="number" class="form-control text-monospace" placeholder="80" value="<%- forward_port %>" required>
|
2018-07-16 03:00:52 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-24 02:56:39 -04:00
|
|
|
<div class="col-sm-6 col-md-6">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="custom-switch">
|
|
|
|
<input type="checkbox" class="custom-switch-input" name="caching_enabled" value="1"<%- caching_enabled ? ' checked' : '' %>>
|
|
|
|
<span class="custom-switch-indicator"></span>
|
|
|
|
<span class="custom-switch-description"><%- i18n('all-hosts', 'caching-enabled') %></span>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-6 col-md-6">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="custom-switch">
|
|
|
|
<input type="checkbox" class="custom-switch-input" name="block_exploits" value="1"<%- block_exploits ? ' checked' : '' %>>
|
|
|
|
<span class="custom-switch-indicator"></span>
|
|
|
|
<span class="custom-switch-description"><%- i18n('all-hosts', 'block-exploits') %></span>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-12 23:16:21 -05:00
|
|
|
<div class="col-sm-12 col-md-12">
|
2018-09-29 02:02:05 -04:00
|
|
|
<div class="form-group">
|
|
|
|
<label class="custom-switch">
|
|
|
|
<input type="checkbox" class="custom-switch-input" name="allow_websocket_upgrade" value="1"<%- allow_websocket_upgrade ? ' checked' : '' %>>
|
|
|
|
<span class="custom-switch-indicator"></span>
|
|
|
|
<span class="custom-switch-description"><%- i18n('proxy-hosts', 'allow-websocket-upgrade') %></span>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-11 18:47:12 -05:00
|
|
|
|
2018-07-24 02:56:39 -04:00
|
|
|
<div class="col-sm-12 col-md-12">
|
|
|
|
<div class="form-group">
|
2018-08-13 05:50:28 -04:00
|
|
|
<label class="form-label"><%- i18n('proxy-hosts', 'access-list') %></label>
|
2018-08-20 18:33:51 -04:00
|
|
|
<select name="access_list_id" class="form-control custom-select" placeholder="<%- i18n('access-lists', 'public') %>">
|
|
|
|
<option selected value="0" data-data="{"id":0}" <%- access_list_id ? '' : 'selected' %>><%- i18n('access-lists', 'public') %></option>
|
2018-07-24 02:56:39 -04:00
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-08 22:21:03 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-16 03:00:52 -04:00
|
|
|
|
|
|
|
<!-- SSL -->
|
|
|
|
<div role="tabpanel" class="tab-pane" id="ssl-options">
|
|
|
|
<div class="row">
|
2018-08-13 05:50:28 -04:00
|
|
|
<div class="col-sm-12 col-md-12">
|
2018-07-16 03:00:52 -04:00
|
|
|
<div class="form-group">
|
2018-08-20 18:33:51 -04:00
|
|
|
<label class="form-label"><%- i18n('all-hosts', 'ssl-certificate') %></label>
|
|
|
|
<select name="certificate_id" class="form-control custom-select" placeholder="<%- i18n('all-hosts', 'none') %>">
|
|
|
|
<option selected value="0" data-data="{"id":0}" <%- certificate_id ? '' : 'selected' %>><%- i18n('all-hosts', 'none') %></option>
|
|
|
|
<option selected value="new" data-data="{"id":"new"}"><%- i18n('all-hosts', 'new-cert') %></option>
|
2018-08-13 05:50:28 -04:00
|
|
|
</select>
|
2018-07-16 03:00:52 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-11-12 06:45:23 -05:00
|
|
|
<div class="col-sm-6 col-md-6">
|
2018-07-16 03:00:52 -04:00
|
|
|
<div class="form-group">
|
|
|
|
<label class="custom-switch">
|
2018-08-13 05:50:28 -04:00
|
|
|
<input type="checkbox" class="custom-switch-input" name="ssl_forced" value="1"<%- ssl_forced ? ' checked' : '' %><%- certificate_id ? '' : ' disabled' %>>
|
2018-07-16 03:00:52 -04:00
|
|
|
<span class="custom-switch-indicator"></span>
|
2018-07-18 02:55:09 -04:00
|
|
|
<span class="custom-switch-description"><%- i18n('all-hosts', 'force-ssl') %></span>
|
2018-07-16 03:00:52 -04:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-11-12 06:45:23 -05:00
|
|
|
<div class="col-sm-6 col-md-6">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="custom-switch">
|
|
|
|
<input type="checkbox" class="custom-switch-input" name="http2_support" value="1"<%- http2_support ? ' checked' : '' %><%- certificate_id ? '' : ' disabled' %>>
|
|
|
|
<span class="custom-switch-indicator"></span>
|
|
|
|
<span class="custom-switch-description"><%- i18n('all-hosts', 'http2-support') %></span>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-02-18 03:21:45 -05:00
|
|
|
<div class="col-sm-6 col-md-6">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="custom-switch">
|
|
|
|
<input type="checkbox" class="custom-switch-input" name="hsts_enabled" value="1"<%- hsts_enabled ? ' checked' : '' %><%- certificate_id && ssl_forced ? '' : ' disabled' %>>
|
|
|
|
<span class="custom-switch-indicator"></span>
|
|
|
|
<span class="custom-switch-description"><%- i18n('all-hosts', 'hsts-enabled') %> <a href="https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security" target="_blank"><i class="fe fe-help-circle"></i></a></span>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-6 col-md-6">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="custom-switch">
|
|
|
|
<input type="checkbox" class="custom-switch-input" name="hsts_subdomains" value="1"<%- hsts_subdomains ? ' checked' : '' %><%- certificate_id && ssl_forced && hsts_enabled ? '' : ' disabled' %>>
|
|
|
|
<span class="custom-switch-indicator"></span>
|
|
|
|
<span class="custom-switch-description"><%- i18n('all-hosts', 'hsts-subdomains') %></span>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-16 03:00:52 -04:00
|
|
|
|
|
|
|
<!-- Lets encrypt -->
|
2018-08-13 05:50:28 -04:00
|
|
|
<div class="col-sm-12 col-md-12 letsencrypt">
|
2018-07-16 03:00:52 -04:00
|
|
|
<div class="form-group">
|
2018-07-18 19:47:55 -04:00
|
|
|
<label class="form-label"><%- i18n('ssl', 'letsencrypt-email') %> <span class="form-required">*</span></label>
|
2018-08-13 08:51:36 -04:00
|
|
|
<input name="meta[letsencrypt_email]" type="email" class="form-control" placeholder="" value="<%- getLetsencryptEmail() %>" required disabled>
|
2018-07-16 03:00:52 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-08-13 05:50:28 -04:00
|
|
|
<div class="col-sm-12 col-md-12 letsencrypt">
|
2018-07-16 03:00:52 -04:00
|
|
|
<div class="form-group">
|
|
|
|
<label class="custom-switch">
|
2018-08-13 08:51:36 -04:00
|
|
|
<input type="checkbox" class="custom-switch-input" name="meta[letsencrypt_agree]" value="1" required disabled>
|
2018-07-16 03:00:52 -04:00
|
|
|
<span class="custom-switch-indicator"></span>
|
2018-07-18 19:47:55 -04:00
|
|
|
<span class="custom-switch-description"><%= i18n('ssl', 'letsencrypt-agree', {url: 'https://letsencrypt.org/repository/'}) %> <span class="form-required">*</span></span>
|
2018-07-16 03:00:52 -04:00
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-08 22:21:03 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-16 03:00:52 -04:00
|
|
|
|
2018-08-22 00:31:03 -04:00
|
|
|
<!-- Advanced -->
|
|
|
|
<div role="tabpanel" class="tab-pane" id="advanced">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
2019-02-24 19:34:55 -05:00
|
|
|
<p>Nginx variables available to you are:</p>
|
|
|
|
<ul class="text-monospace">
|
|
|
|
<li>$server # Host/IP</li>
|
|
|
|
<li>$port # Port Number</li>
|
|
|
|
<li>$forward_scheme # http or https</li>
|
|
|
|
</ul>
|
2018-08-22 00:31:03 -04:00
|
|
|
<div class="form-group mb-0">
|
|
|
|
<label class="form-label"><%- i18n('all-hosts', 'advanced-config') %></label>
|
|
|
|
<textarea name="advanced_config" rows="8" class="form-control text-monospace" placeholder="# <%- i18n('all-hosts', 'advanced-warning') %>"><%- advanced_config %></textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-08 22:21:03 -04:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
2018-07-18 02:55:09 -04:00
|
|
|
<button type="button" class="btn btn-secondary cancel" data-dismiss="modal"><%- i18n('str', 'cancel') %></button>
|
|
|
|
<button type="button" class="btn btn-teal save"><%- i18n('str', 'save') %></button>
|
2018-07-08 22:21:03 -04:00
|
|
|
</div>
|
|
|
|
</div>
|