rails部署无法在端口5000上运行

时间:2017-10-25 16:07:53

标签: ruby-on-rails apache

您好我正在尝试在linux上部署rails应用程序。我在我的应用程序中配置了所有内容,然后在/ etc / apache2 / sites-available中配置了app.conf文件

<VirtualHost *:80>
ServerName xx.xx.xx.xx   /ip of my server
ServerAlias xx.xx.xx.xx  / ip of my server
ServerAdmin user@localhost
DocumentRoot /myapp/current/public
RailsEnv testing
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory "/myapp/current/public">
    Allow from All
    Options -MultiViews
    AllowOverride all
    Options FollowSymLinks
    Require all granted
</Directory>

当我转到xx.xx.xx.xx时,我的应用程序正常运行,但我将端口80更改为5000并转到xx.xx.xx.xx:5000,应用程序未运行。

任何人都可以帮我解决这个问题。我想做什么?

0 个答案:

没有答案