我正在googleappengine上使用gwtjava进行项目。我想在应用程序中使用ssl。如何在appspot.com中使用ssl。我应该配置什么来在我的应用程序上启用ssl有什么帮助吗?提前谢谢
7cwmlq891#
你不需要为我做任何事 *.appspot.com (你不能,这是谷歌的域名)。只需使用ssl网址,就是这样。使用urlhttps://your-app.appspot.com
*.appspot.com
6gpjuf902#
您需要为web.xml文件中的url配置https。引用google app engine文档:要声明https应用于url,请在部署描述符中使用“用户数据约束”(其“传输保证”是机密的)设置安全约束,如下所示:
<security-constraint> <web-resource-collection> <web-resource-name>profile</web-resource-name> <url-pattern>/profile/*</url-pattern> </web-resource-collection> <ustrong textser-data-constraint> <transport-guarantee>CONFIDENTIAL</transport-guarantee> </user-data-constraint> </security-constraint>
对传输保证保密的url使用http(非安全)的请求将使用https自动重定向到同一url。
2条答案
按热度按时间7cwmlq891#
你不需要为我做任何事
*.appspot.com
(你不能,这是谷歌的域名)。只需使用ssl网址,就是这样。使用urlhttps://your-app.appspot.com
6gpjuf902#
您需要为web.xml文件中的url配置https。引用google app engine文档:
要声明https应用于url,请在部署描述符中使用“用户数据约束”(其“传输保证”是机密的)设置安全约束,如下所示:
对传输保证保密的url使用http(非安全)的请求将使用https自动重定向到同一url。