目前我只能得到默認的nginx頁面來提供我的域名。我很確定錯誤是在/ etc/hosts文件或enginx.config文件中。Nginx和Passenger部署問題
我的/ etc/hosts文件是
127.0.0.1 localhost.localdomain localhost
myip server.mydomain.com server
和nginx.config是:
server {
listen 80;
server_name server.mydomain.com;
root /whatever/pulic;
passenger_enabled on;
rails_env production;
我沒有在日誌中出現任何錯誤。順便說一下,我可以運行mongrel和mydomain:3000在那裏看到應用程序。