123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"/>
- <meta charset="UTF-8">
- <meta name="theme-color" content="#4b75ff">
- <link rel="icon" type="image/png" href="img/small_icon.png"/>
- <link rel="stylesheet" href="script/semantic/semantic.min.css">
- <script src="script/jquery-3.6.0.min.js"></script>
- <script src="../script/ao_module.js"></script>
- <script src="script/semantic/semantic.min.js"></script>
- <title>Reverse Proxy</title>
- <style>
- body{
- background-color:white;
- }
-
- .functiontab{
- display:none;
- }
- </style>
- </head>
- <body>
- <br>
- <div class="ui container">
- <h3><img class="ui middle aligned mini image" src="img/small_icon.png" style="margin-right:1em;"> Reverse Proxy Settings</h3>
- <div class="ui divider"></div>
- <div id="errmsg" class="ui red message" style="display: none;"></div>
- <div class="ui stackable grid">
- <div class="four wide column">
- <div id="mainmenu" class="ui secondary vertical pointing menu">
- <a class="item active" tag="status">
- Status
- </a>
- <a class="item" tag="vdir">
- Virtual Directory
- </a>
- <a class="item" tag="subd">
- Subdomain Proxy
- </a>
- <a class="item" tag="rules">
- Create Proxy Rules
- </a>
- <a class="item" tag="setroot">
- Set Proxy Root
- </a>
- </div>
- </div>
- <div class="twelve wide column">
- <!-- Status Tab -->
- <div id="status" class="functiontab">
- <div id="serverstatus" class="ui message">
- <h3 class="ui header">
- <i class="exchange icon"></i>
- <div class="content">
- <span id="statusTitle">Offline</span>
- <div class="sub header" id="statusText">Reverse proxy server is offline</div>
- </div>
- </h3>
- </div>
- <div class="ui divider"></div>
- <p>Inbound Port (Port to be proxied)</p>
- <div class="ui action fluid input">
- <input type="text" id="incomingPort" placeholder="Incoming Port" value="80">
- <button class="ui button" onclick="handlePortChange();">Apply</button>
- </div>
- <Br>
- <button id="startbtn" class="ui teal button" onclick="startService();">Start Service</button>
- <button id="stopbtn" class="ui red disabled button" onclick="stopService();">Stop Service</button>
- </div>
- <!-- Virtual Directory Tab -->
- <div id="vdir" class="functiontab">
- <table class="ui celled table">
- <thead>
- <tr>
- <th>Virtual Directory</th>
- <th>Proxy To</th>
- <th>Remove</th>
- </tr>
- </thead>
- <tbody id="vdirList">
- <tr>
- <td data-label="">test</td>
- <td data-label="">test</td>
- <td data-label=""><button class="ui circular mini red basic button"><i class="remove icon"></i> Remove Proxy</button></td>
- </tr>
- </tbody>
- </table>
- </div>
- <!-- Subdomain Proxy -->
- <div id="subd" class="functiontab">
- <table class="ui celled table">
- <thead>
- <tr>
- <th>Matching Domain</th>
- <th>Proxy To</th>
- <th>Remove</th>
- </tr>
- </thead>
- <tbody id="subdList">
-
- </tbody>
- </table>
- </div>
- <!-- Create Rules -->
- <div id="rules" class="functiontab">
- <div class="">
- <h3><i class="ui exchange icon"></i> New Proxy Endpoint</h3>
- <p>You can create a proxy endpoing by subdomain or virtual directories</p>
- <div class="ui form">
- <div class="field">
- <label>Proxy Type</label>
- <div class="ui selection dropdown">
- <input type="hidden" id="ptype" value="subd">
- <i class="dropdown icon"></i>
- <div class="default text">Proxy Type</div>
- <div class="menu">
- <div class="item" data-value="subd">Sub-domain</div>
- <div class="item" data-value="vdir">Virtual Directory</div>
- </div>
- </div>
- </div>
- <div class="field">
- <label>Subdomain Matching Keyword / Virtual Directory Name</label>
- <input type="text" id="rootname" placeholder="s1.mydomain.com">
- <div class="ui message">
- Example of subdomain matching keyword:<br>
- <code>s1.arozos.com</code> <br>(Any access starting with s1.arozos.com will be proxy to the IP address below)<br>
- Example of virtual directory name: <br>
- <code>/s1/home</code> <br>(Any access to {this_server}/s1/ will be proxy to the IP address below)
- </div>
- </div>
- <div class="field">
- <label>IP Address or Domain Name with port</label>
- <input type="text" id="proxyDomain">
- <small>E.g. 192.168.0.101:8000 or example.com</small>
- </div>
- <div class="field">
- <div class="ui checkbox">
- <input type="checkbox" id="reqTls">
- <label>Proxy Target require TLS Connection (Unstable)</label>
- </div>
- </div>
- <button class="ui teal button" onclick="newProxyEndpoint();">Create Proxy Endpoint</button>
- </div>
- <div class="ui green message" id="proxyaddSucc" style="display:none">
- <i class="ui checkmark icon"></i> Proxy Endpoint Added
- </div>
- </div>
- </div>
- <!-- Set proxy root -->
- <div id="setroot" class="functiontab">
- <h3><i class="ui home icon"></i> Set Proxy Root</h3>
- <p>For all routing not found in the proxy rule, will be redirected to the proxy root server.</p>
- <div class="ui form">
- <div class="field">
- <label>Proxy Root</label>
- <input type="text" id="proxyRoot">
- <small>E.g. localhost:8080</small>
- </div>
- <div class="field">
- <div class="ui checkbox">
- <input type="checkbox" id="rootReqTLS">
- <label>Root require TLS Connection (Not Recommended)</label>
- </div>
- </div>
- </div>
- <br>
- <button class="ui teal button" onclick="setProxyRoot()"><i class="home icon" ></i> Set Proxy Root</button>
- <div class="ui green message" id="ProxyRootUpdate" style="display:none">
- <i class="ui checkmark icon"></i> Proxy Root Updated
- </div>
- </div>
- </div>
- </div>
- </div>
- <br><br>
- <div class="ui divider"></div>
- <div class="ui container" style="color: grey; font-size: 90%">
- <p>Reverse Proxy Subservice. CopyRight imuslab, Licensed under MIT</p>
- </div>
-
- </div>
-
- <script>
- initRPStaste();
- $("#status").slideDown('fast');
- $(".ui.dropdown").dropdown();
- $(".ui.checkbox").checkbox();
- $("#mainmenu").find(".item").each(function(){
- $(this).on("click", function(e){
- $("#mainmenu").find(".item").removeClass("active");
- $(this).addClass("active");
- let targetOpeningTab = $(this).attr("tag");
- $(".functiontab").hide();
- $("#" + targetOpeningTab).slideDown('fast');
- });
- });
- function initRPStaste(){
- $.get("status", function(data){
- if (data.Running == true){
- $("#startbtn").addClass("disabled");
- $("#stopbtn").removeClass("disabled");
- $("#serverstatus").addClass("green");
- $("#statusTitle").text("Online");
- $("#statusText").text("Reverse proxying request on port: " + data.ListenPort);
- }else{
- $("#startbtn").removeClass("disabled");
- $("#stopbtn").addClass("disabled");
- $("#statusTitle").text("Offline");
- $("#statusText").text("Reverse proxy server is offline");
- $("#serverstatus").removeClass("green");
- }
- $("#incomingPort").val(data.ListenPort);
- });
- }
- function deleteEndpoint(ptype, epoint){
- if (confirm("Confirm remove proxy for :" + epoint + " (type: " + ptype + ")?")){
- $.ajax({
- url: "./del",
- data: {ep: epoint, ptype: ptype},
- success: function(){
- listVdirs();
- listSubd();
- }
- })
- }
-
- }
- function startService(){
- $.post("enable", {enable: true}, function(data){
- if (data.error != undefined){
- errmsg(data.error);
- }
- initRPStaste();
- });
- }
- function stopService(){
- $.post("enable", {enable: false}, function(data){
- if (data.error != undefined){
- errmsg(data.error);
- }
- initRPStaste();
- });
- }
- function handlePortChange(){
- var newPortValue = $("#incomingPort").val();
- if (isNaN(newPortValue - 1)){
- alert("Invalid incoming port value");
- return;
- }
- $.post("setIncoming", {incoming: newPortValue}, function(data){
- if (data.error != undefined){
- errmsg(data.error);
- }
- initRPStaste();
- });
- }
- //Virtual directories functions
- listVdirs();
- function listVdirs(){
- $("#vdirList").html(``);
- $.get("list?type=vdir", function(data){
- if (data.error !== undefined){
- $("#vdirList").append(`<tr>
- <td data-label="" colspan="3"><i class="remove icon"></i> ${data.error}</td>
- </tr>`);
- }else if (data.length == 0){
- $("#vdirList").append(`<tr>
- <td data-label="" colspan="3"><i class="checkmark icon"></i> No Virtual Directory Record</td>
- </tr>`);
- }else{
- data.forEach(vdir => {
- let tlsIcon = "";
- if (vdir.RequireTLS){
- tlsIcon = `<i class="lock icon"></i>`;
- }
- $("#vdirList").append(`<tr>
- <td data-label="">${vdir.Root}</td>
- <td data-label="">${vdir.Domain} ${tlsIcon}</td>
- <td data-label=""><button class="ui circular mini red basic button" onclick='deleteEndpoint("vdir","${vdir.Root}")'><i class="remove icon"></i> Remove Vdir</button></td>
- </tr>`);
- });
- }
- });
- }
- listSubd();
- function listSubd(){
- $("#subdList").html(``);
- $.get("list?type=subd", function(data){
- if (data.error !== undefined){
- $("#subdList").append(`<tr>
- <td data-label="" colspan="3"><i class="remove icon"></i> ${data.error}</td>
- </tr>`);
- }else if (data.length == 0){
- $("#subdList").append(`<tr>
- <td data-label="" colspan="3"><i class="checkmark icon"></i> No Subdomain Proxy Record</td>
- </tr>`);
- }else{
- data.forEach(subd => {
- let tlsIcon = "";
- if (subd.RequireTLS){
- tlsIcon = `<i class="lock icon"></i>`;
- }
- $("#subdList").append(`<tr>
- <td data-label="">${subd.MatchingDomain}</td>
- <td data-label="">${subd.Domain} ${tlsIcon}</td>
- <td data-label=""><button class="ui circular mini red basic button" onclick='deleteEndpoint("subd","${subd.MatchingDomain}")'><i class="remove icon"></i> Remove Subd</button></td>
- </tr>`);
- });
- }
- });
- }
- //New Proxy Endpoint
- function newProxyEndpoint(){
- var type = $("#ptype").val();
- var rootname = $("#rootname").val();
- var proxyDomain = $("#proxyDomain").val();
- var useTLS = $("#reqTls")[0].checked;
- if (rootname.trim() == ""){
- $("#rootname").parent().addClass("error");
- return
- }else{
- $("#rootname").parent().removeClass("error");
- }
- if (proxyDomain.trim() == ""){
- $("#proxyDomain").parent().addClass("error");
- return
- }else{
- $("#proxyDomain").parent().removeClass("error");
- }
- //Create the endpoint by calling add
- $.ajax({
- url: "./add",
- data: {type: type, rootname: rootname, tls: useTLS, ep: proxyDomain},
- success: function(data){
- if (data.error != undefined){
- alert(data.error);
- }else{
- //OK
- listVdirs();
- listSubd();
- $("#proxyaddSucc").stop().slideDown('fast').delay(3000).slideUp('fast');
- //Clear old data
- $("#rootname").val("");
- $("#proxyDomain").val("");
- }
- }
- });
-
- }
- function setProxyRoot(){
- var newpr = $("#proxyRoot").val();
- if (newpr.trim() == ""){
- $("#proxyRoot").parent().addClass('error');
- return
- }else{
- $("#proxyRoot").parent().removeClass('error');
- }
- var rootReqTls = $("#rootReqTLS")[0].checked;
- //Create the endpoint by calling add
- $.ajax({
- url: "./add",
- data: {"type": "root", tls: rootReqTls, ep: newpr},
- success: function(data){
- if (data.error != undefined){
- alert(data.error);
- }else{
- //OK
- initRootInfo();
- $("#ProxyRootUpdate").stop().slideDown('fast').delay(3000).slideUp('fast');
- }
- }
- });
- }
- initRootInfo();
- function initRootInfo(){
- $.get("list?type=root", function(data){
- if (data == null){
- }else{
- $("#proxyRoot").val(data.Domain);
- }
- });
- }
- function errmsg(message){
- $("#errmsg").html(`<i class="red remove icon"></i> ${message}`);
- $("#errmsg").slideDown('fast').delay(5000).slideUp('fast');
- }
- </script>
- </body>
- </html>
|