아파치에서 Bugzilla에 접근할 수 없습니다

아파치에서 Bugzilla에 접근할 수 없습니다

httpd.confBugzilla를 설치하고 브라우저에서 액세스하기 위해 다음 코드를 추가했습니다.

<Directory /var/www/html/bugzilla>
  AddHandler cgi-script .cgi
  Options +Indexes +ExecCGI
  DirectoryIndex index.cgi
  AllowOverride Limit
</Directory>

하지만 브라우저에서 액세스하려고 하면 다음 오류가 발생합니다.

The server encountered an internal error or misconfiguration and was unable to complete your request.

답변1

문제는 .htaccessbugzilla 디렉토리의 파일에 있습니다.

파일에 다음 코드를 추가하고 Apache를 다시 시작하십시오.

<FilesMatch (\.pm|\.pl|\.tmpl|localconfig.*)$>
    Deny from all
</FilesMatch>

이제 잘 작동합니다.

관련 정보