summaryrefslogtreecommitdiffstats
path: root/components/congress/test-webapp/www
diff options
context:
space:
mode:
authorblsaws <bryan.sullivan@att.com>2016-05-18 17:55:21 -0700
committerblsaws <bryan.sullivan@att.com>2016-05-18 17:55:21 -0700
commitf60b652464b150d4e7837fceb522dafbf7c2b91e (patch)
tree2c558d907c78e5d19a80f81f9b93867f6dea2c7d /components/congress/test-webapp/www
parenta770106f9511b4d57b0a30f2f587345b276da903 (diff)
Add port to congress proxy server; disable proxy logging (error)
JIRA: COPPER-4 Change-Id: I09ca53bdf9a90884bf40be33ade6e2e579d2781c Signed-off-by: blsaws <bryan.sullivan@att.com>
Diffstat (limited to 'components/congress/test-webapp/www')
-rw-r--r--components/congress/test-webapp/www/copper.js2
-rw-r--r--components/congress/test-webapp/www/proxy/index.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/components/congress/test-webapp/www/copper.js b/components/congress/test-webapp/www/copper.js
index bd44f05..a9656c1 100644
--- a/components/congress/test-webapp/www/copper.js
+++ b/components/congress/test-webapp/www/copper.js
@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
*/
-var origin = "http://localhost/proxy/?~url=";
+var origin = "http://localhost:2257/proxy/?~url=";
var dataSources = [];
var datasource_tables = [];
var datasource_rows = [];
diff --git a/components/congress/test-webapp/www/proxy/index.php b/components/congress/test-webapp/www/proxy/index.php
index f459549..b8e954d 100644
--- a/components/congress/test-webapp/www/proxy/index.php
+++ b/components/congress/test-webapp/www/proxy/index.php
@@ -44,14 +44,14 @@ $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";
+//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";
+//if ($result === false) $response = "PHP error in index.php";
// header("Location: ".$url);
header("Content-Type: ".$type);