mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-24 11:15:21 +01:00
Changed proxy-url to /up/ as ktr suggested.
This commit is contained in:
parent
75efba1425
commit
9ea9e347ea
@ -3,7 +3,7 @@
|
||||
public void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
string path = Request.Params["path"];
|
||||
System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create("http://localhost:8123/" + path);
|
||||
System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create("http://localhost:8123/up/" + path);
|
||||
System.Net.WebResponse response = request.GetResponse();
|
||||
System.IO.Stream responseStream = response.GetResponseStream();
|
||||
System.IO.StreamReader reader = new System.IO.StreamReader(responseStream);
|
||||
|
Loading…
Reference in New Issue
Block a user