我试图使用Apache2和Passanger为Python应用程序提供服务,所以我将启用网站的文件更新为以下内容:
<VirtualHost *:5000>
ServerName mydomain.com
# Tell Apache and Passenger where your app's code directory is
DocumentRoot /var/www/html/safepark/safepark
PassengerAppRoot /var/www/html/safepark
# Tell Passenger that your app is a Python app
PassengerAppType wsgi
PassengerStartupFile passenger_wsgi.py
# Relax Apache security settings
<Directory /var/www/html/safepark/safepark>
Allow from all
Options -MultiViews
# Uncomment this if you're on Apache >= 2.4:
Require all granted
</Directory>
</VirtualHost>
但是尝试访问safepark应用程序时,我收到“无法访问此网站”