我正在尝试使用Go 和 Revel 框架在我的 live、personal-website.com 上运行一个简单的应用程序。
当我在本地开发并测试 localhost:8888 时一切正常。但是,在我的 Web 服务器上安装并从 root 运行我的应用程序后,# run revel personalwebsiteapp
我收到以下错误:
ERROR 2013/10/01 04:01:35 harness.go:167: Failed to start reverse proxy: listen tcp xx.xxx.xx.xx:80: cannot assign requested address
在这里完全输了。我是否需要在 Revel 之上运行像 Nginx 之类的代理服务器或其他东西?
这可能是我的 conf/app.conf 文件的相关部分:
http.addr="personal-website.com"
http.port=80 #whether I set this to 80 or 8888 doesn't matter, I get the same error