我想让这个虚拟主机在apache + ubuntu上工作。我希望它在没有真正的域名的情况下工作,但是通过ip和路径。它现在没有被激活。是否可以像这样使用serverName或只有域名有效?
- cd Backend && serverless deploy --region eu-west-1 --verbose
答案 0 :(得分:0)
从服务器名称中删除路径部分,然后这应该起作用
new DateTime('2 years ago first day of january');
不要忘记在<VirtualHost *:80>
serverName 37.35.66.98
DocumentRoot /var/www/html/just-do-it/web
<Directory /var/www/html/just-do-it/web>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Order Allow,Deny
Allow from All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
文件