Invalid command ‘AuthGroupFile’, perhaps misspelled or defined by a module not included in the server configuration

Apacheのベーシック認証の設置でInvalid command 'AuthGroupFile', perhaps misspelled or defined by a module not included in the server configurationというエラーが出たときの対処方です
結論:AuthGroupFile /dev/null行を削除かコメントアウトする
これだけです。別にこれなくても認証ききます。
AuthUserFile /フルパス/.htpasswd #AuthGroupFile /dev/null ←このようにコメントアウトする AuthName "Please enter your ID and password" AuthType Basic require valid-user order deny,allow
AuthUserFile /フルパス/.htpasswd AuthName "Please enter your ID and password" AuthType Basic require valid-user order deny,allow
もう削除しちゃう。これで終わりです。