Apache2 无法重新启动,因为控制进程以错误代码退出。
<VirtualHost *:80>
serveradmin Rabie@Laassal
docummenRoot "/var/www/html/nextcloud/"
serverName 192.168.159.132
serverAlias ubuntu
<Directory "/var/www/html/nextcloud/">
option +followsymLinks <= 7th line
Allowoverride All
...
</directory>
。 。 。
答案1
在 LXD 容器中进行一些测试之后,现在您提供了尽可能接近有用的配置,我发现“选项”无效,但“选项”有效。
这是一个例子:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory />
Options +FollowSymLinks
</Directory>
</VirtualHost>
所以,,Options
不是Option
。
原始答案(没有详细信息和测试)仍然可用这里为了历史目的。