summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/test/store-wsgi
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-03-27 06:24:56 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-03-27 06:24:56 +0000
commitd64a280c20229e374684e9b5e392fdf878ed5514 (patch)
treebd0edee43d0f6569824a3d3d38960a5602c58da8 /sca-cpp/trunk/test/store-wsgi
parentdac887d0f494151b210588ce694c55ce27f07263 (diff)
Add scripts to setup HTTPS support. A few fixes to get HTTPS working end to end with both HTTPD and WSGI servers. Minor cleanup of the HTTPD config scripts.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@928160 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/test/store-wsgi')
-rw-r--r--sca-cpp/trunk/test/store-wsgi/app.yaml2
-rw-r--r--sca-cpp/trunk/test/store-wsgi/domain-frontend.composite8
2 files changed, 6 insertions, 4 deletions
diff --git a/sca-cpp/trunk/test/store-wsgi/app.yaml b/sca-cpp/trunk/test/store-wsgi/app.yaml
index 1e2dc05547..e5807c233a 100644
--- a/sca-cpp/trunk/test/store-wsgi/app.yaml
+++ b/sca-cpp/trunk/test/store-wsgi/app.yaml
@@ -44,7 +44,9 @@ handlers:
- url: /(.*\.(html|png))
static_files: htdocs/\1
upload: htdocs/(.*\.(html|png))
+ secure: always
- url: /.*
script: composite.py
+ secure: always
diff --git a/sca-cpp/trunk/test/store-wsgi/domain-frontend.composite b/sca-cpp/trunk/test/store-wsgi/domain-frontend.composite
index ca2472d40a..a183c84a76 100644
--- a/sca-cpp/trunk/test/store-wsgi/domain-frontend.composite
+++ b/sca-cpp/trunk/test/store-wsgi/domain-frontend.composite
@@ -28,13 +28,13 @@
<t:binding.http uri="store"/>
</service>
<reference name="catalog">
- <t:binding.http uri="http://sca-store-backend/catalog"/>
+ <t:binding.http uri="https://sca-store-backend.appspot.com/catalog"/>
</reference>
<reference name="shoppingCart">
- <t:binding.http uri="http://sca-store-backend/shoppingCart"/>
+ <t:binding.http uri="https://sca-store-backend.appspot.com/shoppingCart"/>
</reference>
<reference name="shoppingTotal">
- <t:binding.http uri="http://sca-store-backend/shoppingCart"/>
+ <t:binding.http uri="https://sca-store-backend.appspot.com/shoppingCart"/>
</reference>
</component>
@@ -56,7 +56,7 @@
<t:binding.jsonrpc uri="total"/>
</service>
<reference name="cache">
- <t:binding.http uri="http://sca-store-backend.appspot.com/cache"/>
+ <t:binding.http uri="https://sca-store-backend.appspot.com/cache"/>
</reference>
</component>