summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorblsaws <bs3131@att.com>2016-02-17 15:39:33 -0800
committerblsaws <bs3131@att.com>2016-02-17 15:39:33 -0800
commit56db520ef9207574138e39e65600135a8222fe59 (patch)
tree1cdebd7bb914036e1593600fc04c16b00e338e53 /components
parentba12ddf579e7e0843e811833e91735fcfc3f8b74 (diff)
Correct location of test server logs.
JIRA: COPPER-4 Change-Id: Ia0129b5b4a064c8a473f2fb2df27e4350ab18438 Signed-off-by: blsaws <bs3131@att.com>
Diffstat (limited to 'components')
-rw-r--r--components/congress/test-webapp/www/html/proxy/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/congress/test-webapp/www/html/proxy/index.php b/components/congress/test-webapp/www/html/proxy/index.php
index 5a4b595..ad38ba8 100644
--- a/components/congress/test-webapp/www/html/proxy/index.php
+++ b/components/congress/test-webapp/www/html/proxy/index.php
@@ -43,14 +43,14 @@ $response = curl_exec($curlop);
$req_time=time();
$info = curl_getinfo($curlop);
-$result = file_put_contents("/home/ubuntu/logs/".date('ymd').".log", "proxy.php, ".$req_time.", ".$url.", ".$type.", ".$body."\n",FILE_APPEND);
+$result = file_put_contents("/home/opnfv/coppertest/logs/".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("/home/ubuntu/logs/".date('ymd').".log", "proxy.php, ".$req_time.", ".$responseCode.", ".$type.", ".$header.", ".$body."\n",FILE_APPEND);
+$result = file_put_contents("/home/opnfv/coppertest/logs/".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);