Questions tagged «heroku»

3
如何在Heroku上部署收藏夹图标?
我的Hello worldHeroku应用程序具有以下代码。同样在项目的根文件夹中,我有一个favicon.ico。 import os from flask import Flask app = Flask(__name__) html = ''' <!doctype html> <html> <head> <link rel="shortcut icon" href="/webmasters//favicon.ico"> <title>Hello world!</title> </head> <body> <p>Hello world!</p> </body> </html> ''' @app.route('/') def index(): return html if __name__ == '__main__': port = int(os.environ.get('PORT', 5000)) app.run(host='0.0.0.0', port=port) 浏览到我的应用程序时,看不到favicon。另外,当我检查时heroku logs,我得到以下404行: 2012-02-14T05:23:29+00:00 app[web.1]: …
11 favicon  heroku 

2
具有1and1和Heroku的DNS A记录
我有一个通过1and1.com注册的域名,我想指向我的Heroku应用程序(mydomain.com和www.mydomain.com)。 Heroku的说明(http://devcenter.heroku.com/articles/custom-domains)说: 根域(mydomain.com)必须使用A记录要设置根域,请使用DNS管理工具为以下每个地址添加单独的A记录:75.101.163.44、75.101.145.87、174.129.212.2 但是1and1只允许一个A记录IP。 选择Heroku的三个IP之一就足够了吗,或者我应该采用其他方式设置它吗? 谢谢
9 heroku  dns 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.