2019-01-12 16:09:12 +00:00
|
|
|
<div class="row tile">
|
2019-03-01 09:23:14 +00:00
|
|
|
<div class="col-md-12 col-md-auto">
|
|
|
|
<div class="ibox float-e-margins">
|
2020-03-01 07:05:26 +00:00
|
|
|
<h3 class="ibox-title" langtag="page-hostedit"></h3>
|
2019-03-01 09:23:14 +00:00
|
|
|
<div class="ibox-content">
|
|
|
|
<form class="form-horizontal">
|
2019-02-15 14:59:28 +00:00
|
|
|
<input type="hidden" name="id" value="{{.h.Id}}">
|
2019-01-12 16:09:12 +00:00
|
|
|
<div class="form-group">
|
2020-03-01 07:05:26 +00:00
|
|
|
<label class="control-label font-bold" langtag="word-clientid"></label>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<input value="{{.h.Client.Id}}" class="form-control" type="text" name="client_id" placeholder="" langtag="word-clientid">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="control-label font-bold" langtag="word-remark"></label>
|
2019-03-01 09:23:14 +00:00
|
|
|
<div class="col-sm-10">
|
2019-03-05 01:23:18 +00:00
|
|
|
<input value="{{.h.Remark}}" class="form-control" type="text" name="remark"
|
|
|
|
placeholder="remark">
|
2019-03-01 09:23:14 +00:00
|
|
|
</div>
|
2019-02-15 14:59:28 +00:00
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
2020-03-01 07:05:26 +00:00
|
|
|
<label class="control-label font-bold" langtag="word-host"></label>
|
2019-03-01 09:23:14 +00:00
|
|
|
<div class="col-sm-10">
|
2020-03-01 07:05:26 +00:00
|
|
|
<input value="{{.h.Host}}" class="form-control" type="text" name="host" placeholder="" langtag="info-suchashost">
|
2019-03-05 01:23:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group" id="scheme">
|
2020-03-01 07:05:26 +00:00
|
|
|
<label class="control-label font-bold" langtag="word-scheme"></label>
|
2019-03-05 01:23:18 +00:00
|
|
|
<div class="col-sm-10">
|
2019-03-30 04:03:17 +00:00
|
|
|
<select id="scheme_select" class="form-control" name="scheme">
|
2020-03-01 07:05:26 +00:00
|
|
|
<option {{if eq "all" .h.Scheme}}selected{{end}} value="all" langtag="word-all"></option>
|
|
|
|
<option {{if eq "http" .h.Scheme}}selected{{end}} value="http" langtag="word-http"></option>
|
|
|
|
<option {{if eq "https" .h.Scheme}}selected{{end}} value="https" langtag="word-https"></option>
|
2019-03-05 01:23:18 +00:00
|
|
|
</select>
|
2019-03-01 09:23:14 +00:00
|
|
|
</div>
|
2019-01-12 16:09:12 +00:00
|
|
|
</div>
|
2019-03-30 04:03:17 +00:00
|
|
|
{{if eq false .https_just_proxy}}
|
|
|
|
<div class="form-group" id="cert_file">
|
2020-03-01 07:05:26 +00:00
|
|
|
<label class="control-label font-bold" langtag="word-httpscert"></label>
|
2019-03-30 04:03:17 +00:00
|
|
|
<div class="col-sm-10">
|
2020-03-01 07:05:26 +00:00
|
|
|
<input value="{{.h.CertFilePath}}" class="form-control" type="text" name="cert_file_path" placeholder="" langtag="info-unrestricted">
|
2019-03-30 04:03:17 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group" id="key_file">
|
2020-03-01 07:05:26 +00:00
|
|
|
<label class="control-label font-bold" langtag="word-httpskey"></label>
|
2019-03-30 04:03:17 +00:00
|
|
|
<div class="col-sm-10">
|
2020-03-01 07:05:26 +00:00
|
|
|
<input value="{{.h.KeyFilePath}}" class="form-control" type="text" name="key_file_path" placeholder="" langtag="info-unrestricted">
|
2019-03-30 04:03:17 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2019-01-25 04:10:12 +00:00
|
|
|
<div class="form-group">
|
2020-03-01 07:05:26 +00:00
|
|
|
<label class="control-label font-bold" langtag="word-urlroute"></label>
|
2019-03-01 09:23:14 +00:00
|
|
|
<div class="col-sm-10">
|
2020-03-01 07:05:26 +00:00
|
|
|
<input value="{{.h.Location}}" class="form-control" type="text" name="location" placeholder="" langtag="info-unrestricted">
|
2019-03-01 09:23:14 +00:00
|
|
|
</div>
|
2019-01-25 04:10:12 +00:00
|
|
|
</div>
|
2019-04-08 09:01:08 +00:00
|
|
|
{{if eq true .allow_local_proxy}}
|
|
|
|
<div class="form-group" id="local_proxy">
|
2020-03-01 07:05:26 +00:00
|
|
|
<label class="control-label font-bold" langtag="word-proxytolocal"></label>
|
2019-04-08 09:01:08 +00:00
|
|
|
<div class="col-sm-10">
|
|
|
|
<select class="form-control" name="local_proxy">
|
2020-03-01 07:05:26 +00:00
|
|
|
<option {{if eq false .h.Target.LocalProxy}}selected{{end}} value="0" langtag="word-no"></option>
|
|
|
|
<option {{if eq true .h.Target.LocalProxy}}selected{{end}} value="1" langtag="word-yes"></option>
|
2019-04-08 09:01:08 +00:00
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2019-01-12 16:09:12 +00:00
|
|
|
<div class="form-group">
|
2020-03-01 07:05:26 +00:00
|
|
|
<label class="control-label font-bold" langtag="word-target"></label>
|
2019-03-01 09:23:14 +00:00
|
|
|
<div class="col-sm-10">
|
2020-03-01 07:05:26 +00:00
|
|
|
<textarea class="form-control" rows="4" type="text" name="target" placeholder="" langtag="info-suchasiplist">{{.h.Target.TargetStr}}</textarea>
|
|
|
|
<span class="help-block m-b-none" langtag="info-targethost"></span>
|
2019-03-01 09:23:14 +00:00
|
|
|
|
|
|
|
</div>
|
2019-01-12 16:09:12 +00:00
|
|
|
</div>
|
|
|
|
<div class="form-group" id="header">
|
2020-03-01 07:05:26 +00:00
|
|
|
<label class="control-label font-bold" langtag="word-requestheader"></label>
|
2019-03-01 09:23:14 +00:00
|
|
|
<div class="col-sm-10">
|
2020-03-01 07:05:26 +00:00
|
|
|
<textarea class="form-control" rows="4" type="text" name="header" placeholder="Cache-Control: no-cache">{{.h.HeaderChange}}</textarea>
|
|
|
|
<span class="help-block m-b-none" langtag="info-header"></span>
|
2019-03-01 09:23:14 +00:00
|
|
|
</div>
|
|
|
|
|
2019-01-12 16:09:12 +00:00
|
|
|
</div>
|
|
|
|
<div class="form-group" id="hostchange">
|
2020-03-01 07:05:26 +00:00
|
|
|
<label class="control-label font-bold" langtag="word-requesthost"></label>
|
2019-03-01 09:23:14 +00:00
|
|
|
<div class="col-sm-10">
|
2020-03-01 07:05:26 +00:00
|
|
|
<input value="{{.h.HostChange}}" class="form-control" value="" type="text" name="hostchange" placeholder="" langtag="word-requesthost">
|
2019-03-01 09:23:14 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="hr-line-dashed"></div>
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="col-sm-4 col-sm-offset-2">
|
2020-03-01 07:05:26 +00:00
|
|
|
<button class="btn btn-success" type="button" onclick="submitform('edit', '{{.web_base_url}}/index/edithost', $('form').serializeArray())">
|
|
|
|
<i class="fa fa-fw fa-lg fa-save"></i> <span langtag="word-save"></span>
|
|
|
|
</button>
|
2019-03-01 09:23:14 +00:00
|
|
|
</div>
|
2019-01-12 16:09:12 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-03-01 09:23:14 +00:00
|
|
|
|
2019-01-12 16:09:12 +00:00
|
|
|
<script>
|
|
|
|
$(function () {
|
2019-03-30 04:03:17 +00:00
|
|
|
$("#scheme_select").on("change", function () {
|
|
|
|
if ($("#scheme_select").val() == "all" || $("#scheme_select").val() == "https") {
|
|
|
|
$("#cert_file").css("display", "block")
|
|
|
|
$("#key_file").css("display", "block")
|
|
|
|
} else {
|
|
|
|
$("#cert_file").css("display", "none")
|
|
|
|
$("#key_file").css("display", "none")
|
|
|
|
}
|
|
|
|
})
|
2019-01-12 16:09:12 +00:00
|
|
|
})
|
2019-03-30 04:03:17 +00:00
|
|
|
|
2019-01-12 16:09:12 +00:00
|
|
|
</script>
|