1

我创建了 python flask 应用程序,并部署到 openshift。它可以在

https://ledgerware-hj.rhcloud.com

现在我想使用子域名作为语言代码。在我的本地电脑上,我将以下行添加到 C:\Windows\System32\drivers\etc\hosts 文件中:

127.0.0.1 ledgerware.dev
127.0.0.1 en.ledgerware.dev

我还配置了烧瓶应用程序:

SERVER_NAME = 'ledgerware.dev:5000'

如果我浏览到http://en.ledgerware.dev:5000一切正常。对于 openshift,我将烧瓶应用程序配置为:

SERVER_NAME = 'ledgerware-hj.rhcloud.com'

但是,https://en.ledgerware-hj.rhcloud.com将不起作用,因为必须进行其他设置。我还应该怎么做才能让它发挥作用?

4

1 回答 1

1

这是与您的问题相关的博客,其中有一些建议: https ://www.openshift.com/blogs/custom-url-names-for-your-paas-applications-host-forwarding-and-cnames-the-openshift-方法

你能看看它,看看它是否有帮助?

于 2013-05-14T13:12:46.533 回答