私はubuntu 15.04を使用しています。
この URL のガイドを使用して suphp (レポ) をインストールしました: Install suphp with apache on ubuntu
この例のように仮想ホストを定義した後:
<VirtualHost 64.131.72.23:80>
ServerName some-site.com
ServerAlias www.some-site.com
DocumentRoot /home/mike/public_html
<IfModule mod_suphp.c>
suPHP_UserGroup mike mike
</IfModule>
</VirtualHost>
Apache サービスを再起動したところ、次のエラーが発生しました。
Invalid command 'suPHP_UserGroup', perhaps misspelled or defined by a module not included in the server configuration
:/etc/apache2/sites-available# systemctl status apache2.service -l
apache2.service - LSB: Apache2 web server
Loaded: loaded (/etc/init.d/apache2)
Active: failed (Result: exit-code) since Wed 2016-01-20 00:36:26 CST; 41s ago
Docs: man:systemd-sysv-generator(8)
Process: 18692 ExecStop=/etc/init.d/apache2 stop (code=exited, status=0/SUCCESS)
Process: 18718 ExecStart=/etc/init.d/apache2 start (code=exited, status=1/FAILURE)
Jan 20 00:36:26 numi apache2[18718]: * The apache2 configtest failed.
Jan 20 00:36:26 numi apache2[18718]: Output of config test was:
Jan 20 00:36:26 numi apache2[18718]: AH00526: Syntax error on line 7 of /etc/apache2/sites-enabled/wpdev.co.il.c onf:
Jan 20 00:36:26 numi apache2[18718]: Invalid command 'suPHP_UserGroup', perhaps misspelled or defined by a modul e not included in the server configuration
Jan 20 00:36:26 numi apache2[18718]: Action 'configtest' failed.
Jan 20 00:36:26 numi apache2[18718]: The Apache error log may have more information.
Jan 20 00:36:26 numi systemd[1]: apache2.service: control process exited, code=exited status=1
Jan 20 00:36:26 numi systemd[1]: Failed to start LSB: Apache2 web server.
Jan 20 00:36:26 numi systemd[1]: Unit apache2.service entered failed state.
Jan 20 00:36:26 numi systemd[1]: apache2.service failed.
編集
最初の回答によると、suPHP_UserGroup をラップして<Directory>
も同じエラーが発生します。
私は大した専門家ではないので、今のところコンパイルはしません。多くの人が使用しているパッケージがなぜ私にはうまくいかないのかを理解するためです。
何か案は ?