diff options
author | blsaws <bryan.sullivan@att.com> | 2016-05-22 19:56:31 -0700 |
---|---|---|
committer | blsaws <bryan.sullivan@att.com> | 2016-05-22 19:56:31 -0700 |
commit | 8d0118e42e6f845da85fe8ed23d01a706cd6d279 (patch) | |
tree | a6f60ca85b24f3ab6d3a8699749260f4ca0b1b9e /components/congress/test-webapp/www/proxy | |
parent | 96b0a744fd44e5da8d380a5c5e06a5eae9c8b30c (diff) |
Various design improvements.
JIRA: COPPER-4
Change-Id: Ie1ebf77dfd707eb784627c0b4abd4210e85c6c2d
Signed-off-by: blsaws <bryan.sullivan@att.com>
Diffstat (limited to 'components/congress/test-webapp/www/proxy')
-rw-r--r-- | components/congress/test-webapp/www/proxy/index.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/congress/test-webapp/www/proxy/index.php b/components/congress/test-webapp/www/proxy/index.php index b8e954d..8a2833a 100644 --- a/components/congress/test-webapp/www/proxy/index.php +++ b/components/congress/test-webapp/www/proxy/index.php @@ -23,7 +23,7 @@ if ($method == 'OPTIONS') { exit(); } -$url = "http://CONGRESS_HOST:1789".$_GET['~url']; +$url = "http://192.168.10.117:1789".$_GET['~url']; $curlop = curl_init(); curl_setopt($curlop, CURLOPT_URL, $url); curl_setopt($curlop, CURLOPT_CUSTOMREQUEST, $method); @@ -43,15 +43,15 @@ $response = curl_exec($curlop); $req_time=time(); $info = curl_getinfo($curlop); -$result = file_put_contents("/tmp/copper/log/".date('ymd').".log", "proxy.php, ".$req_time.", ".$url.", ".$type.", ".$body."\n",FILE_APPEND); -//if ($result === false) $response = "PHP error in index.php"; +$result = file_put_contents("/tmp/".date('ymd').".log", "proxy.php, ".$req_time.", ".$url.", ".$type.", ".$body."\n",FILE_APPEND); +if ($result === false) $response = "PHP error in index.php"; $responseCode=curl_getinfo($curlop,CURLINFO_HTTP_CODE); $header_size = curl_getinfo($response, CURLINFO_HEADER_SIZE); $header = substr($response, 0, $header_size); $type = curl_getinfo($curlop,CURLINFO_CONTENT_TYPE); $body = substr($response, $header_size); -$result = file_put_contents("/tmp/copper/log/".date('ymd').".log", "proxy.php, ".$req_time.", ".$responseCode.", ".$type.", ".$header.", ".$body."\n",FILE_APPEND); -//if ($result === false) $response = "PHP error in index.php"; +$result = file_put_contents("/tmp/".date('ymd').".log", "proxy.php, ".$req_time.", ".$responseCode.", ".$type.", ".$header.", ".$body."\n",FILE_APPEND); +if ($result === false) $response = "PHP error in index.php"; // header("Location: ".$url); header("Content-Type: ".$type); |