您好我正在尝试在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,应用程序未运行。
任何人都可以帮我解决这个问题。我想做什么?