mirror of
				https://github.com/ehang-io/nps
				synced 2025-10-30 13:10:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			140 lines
		
	
	
		
			7.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			140 lines
		
	
	
		
			7.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| <div class="row tile">
 | |
|     <div class="col-md-12 col-md-auto">
 | |
|         <div class="ibox float-e-margins">
 | |
|             <h3 class="ibox-title">add host</h3>
 | |
|             <div class="ibox-content">
 | |
|                 <form class="form-horizontal">
 | |
|                     <input type="hidden" name="id" value="{{.h.Id}}">
 | |
|                     <div class="form-group">
 | |
|                         <label class="col-sm-2 control-label" langtag="info-remark">备注</label>
 | |
|                         <div class="col-sm-10">
 | |
|                             <input value="{{.h.Remark}}" class="form-control" type="text" name="remark"
 | |
|                                    placeholder="remark">
 | |
|                         </div>
 | |
|                     </div>
 | |
|                     <div class="form-group">
 | |
|                         <label class="col-sm-2 control-label" langtag="info-host">域名</label>
 | |
|                         <div class="col-sm-10">
 | |
|                             <input value="{{.h.Host}}" class="form-control" type="text" name="host"
 | |
|                                    placeholder="such as a.proxy.com">
 | |
|                         </div>
 | |
|                     </div>
 | |
|                     <div class="form-group" id="scheme">
 | |
|                         <label class="control-label col-sm-2" langtag="info-scheme">协议类型</label>
 | |
|                         <div class="col-sm-10">
 | |
|                             <select id="scheme_select" class="form-control" name="scheme">
 | |
|                                 <option {{if eq "all" .h.Scheme}}selected{{end}} value="all">all</option>
 | |
|                                 <option {{if eq "http" .h.Scheme}}selected{{end}} value="http">http</option>
 | |
|                                 <option {{if eq "https" .h.Scheme}}selected{{end}} value="https">https</option>
 | |
|                             </select>
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 {{if eq false .https_just_proxy}}
 | |
|                     <div class="form-group" id="cert_file">
 | |
|                         <label class="col-sm-2 control-label" langtag="info-https-cert">https cert file路径</label>
 | |
|                         <div class="col-sm-10">
 | |
|                             <input value="{{.h.CertFilePath}}" class="form-control" type="text" name="cert_file_path"
 | |
|                                    placeholder="empty means to be unrestricted">
 | |
|                         </div>
 | |
|                     </div>
 | |
|                     <div class="form-group" id="key_file">
 | |
|                         <label class="col-sm-2 control-label" langtag="info-https-key">https key file路径</label>
 | |
|                         <div class="col-sm-10">
 | |
|                             <input value="{{.h.KeyFilePath}}" class="form-control" type="text" name="key_file_path"
 | |
|                                    placeholder="empty means to be unrestricted">
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 {{end}}
 | |
|                     <div class="form-group">
 | |
|                         <label class="col-sm-2 control-label" langtag="info-url-router">url路由</label>
 | |
|                         <div class="col-sm-10">
 | |
|                             <input value="{{.h.Location}}" class="form-control" type="text" name="location"
 | |
|                                    placeholder="empty means to be unrestricted">
 | |
|                         </div>
 | |
|                     </div>
 | |
|                     <div class="form-group">
 | |
|                         <label class="col-sm-2 control-label" langtag="info-client-id">客户端id</label>
 | |
|                         <div class="col-sm-10">
 | |
|                             <input value="{{.h.Client.Id}}" class="form-control" type="text" name="client_id"
 | |
|                                    placeholder="client id">
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 {{if eq true .allow_local_proxy}}
 | |
|                     <div class="form-group" id="local_proxy">
 | |
|                         <label class="control-label col-sm-2" langtag="info-local-proxy">是否代理为服务端本地</label>
 | |
|                         <div class="col-sm-10">
 | |
|                             <select class="form-control" name="local_proxy">
 | |
|                                 <option  {{if eq false .h.Target.LocalProxy}}selected{{end}} value="0">no</option>
 | |
|                                 <option  {{if eq true .h.Target.LocalProxy}}selected{{end}} value="1">yes</option>
 | |
|                             </select>
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 {{end}}
 | |
|                     <div class="form-group">
 | |
|                         <label class="col-sm-2 control-label" langtag="info-target">内网目标(ip:端口)</label>
 | |
|                         <div class="col-sm-10">
 | |
|                         <textarea class="form-control" rows="4" type="text" name="target"
 | |
|                                   placeholder="such as
 | |
| 10.1.50.203:80
 | |
| 10.1.50.202:80">{{.h.Target.TargetStr}}</textarea>
 | |
|                             <span class="help-block m-b-none">Line break if load balancing</span>
 | |
| 
 | |
|                         </div>
 | |
|                     </div>
 | |
|                     <div class="form-group" id="header">
 | |
|                         <label class="col-sm-2 control-label" langtag="info-header-modify">request header修改</label>
 | |
|                         <div class="col-sm-10">
 | |
|                         <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"> Colon separated, multiple lines please fill in</span>
 | |
|                         </div>
 | |
| 
 | |
|                     </div>
 | |
|                     <div class="form-group" id="hostchange">
 | |
|                         <label class="col-sm-2 control-label" langtag="info-host-change">request host修改</label>
 | |
|                         <div class="col-sm-10">
 | |
|                             <input value="{{.h.HostChange}}" class="form-control" value="" type="text" name="hostchange"
 | |
|                                    placeholder="host modify">
 | |
|                         </div>
 | |
|                     </div>
 | |
|                     <div class="hr-line-dashed"></div>
 | |
|                     <div class="form-group">
 | |
|                         <div class="col-sm-4 col-sm-offset-2">
 | |
|                              <button class="btn btn-success" href="#" id="add"><i
 | |
|                                 class="fa fa-fw fa-lg fa-eye"></i><span langtag="info-save">保存</span>
 | |
|                         </button>
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 </form>
 | |
|             </div>
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | |
| 
 | |
| <script>
 | |
|     $(function () {
 | |
|         $("#add").on("click", function () {
 | |
|             $.ajax({
 | |
|                 type: "POST",
 | |
|                 url: "/index/edithost",
 | |
|                 data: $("form").serializeArray(),
 | |
|                 success: function (res) {
 | |
|                     alert(res.msg)
 | |
|                     if (res.status) {
 | |
|                         history.back(-1)
 | |
|                     }
 | |
|                 }
 | |
|             })
 | |
|         })
 | |
|         $("#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")
 | |
|             }
 | |
|         })
 | |
|     })
 | |
| 
 | |
| </script> | 
