我想启动一个基本的FlaskBootstrapSecurity app dev环境(Ubuntu服务器)。
然后我做python manage.py runserver
并说它在http://0.0.0.0:5000/上运行[在VENV / lib / python3.4 / site-packages / werkzeug / _internal.py:87]
在浏览器(笔记本电脑)上,当我尝试SERVER_NAME:5000时,我得到了404.
我发现它在日志功能中(第87行)。但卡住......
感谢任何帮助。
我克隆到$ HOME / dev目录中,以便......
$HOME/dev/FlashBootstrapSecurity/flask_application
我想使用Blueprint插件和安全功能...但发现很难设置...超过3天,现在我已经恢复了基本克隆工作......没有运气。
myid = 'myid@gmail.com'
mypw = '***'
# CUSTOMIZED FOR myapp - these are inserted into the Config object
myApp_SYS_ADMINS = myid
myApp_MAIL_USERNAME = myid
myApp_MAIL_PASSWORD = mypw
myApp_SECURITY_EMAIL_SENDER = 'Security < '+myid+' >'
### DO NOT TOUCH BELOW
class Config(object):
def __init__(self):
答案 0 :(得分:0)
问题是在/ etc / hosts中有127.0.1.1用于服务器主机名。通过将其更改为NIC IP地址,这解决了问题。