Здравствуйте, помогите пожалуйста у меня вот такая проблема c apache2 на ubuntu server 11.04 (на модуль cgi я ссылку сделал, и опция ExecCGI в файлике .htaccess прописана):
Страничка мне пишет:
Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request.
...
Лог мне пишет:
[Thu Sep 01 11:58:21 2011] [error] (2)No such file or directory: exec of '/usr/local/accnt/HTML/adm/index.cgi' failed
[Thu Sep 01 11:58:21 2011] [error] [client 192.168.1.3] Premature end of script headers: index.cgi
Вот настройки: default-ssl
<IfModule mod_ssl.c>
<VirtualHost _default_:443>
ServerAdmin webmaster@localhost
DocumentRoot /usr/local/accnt/HTML <--здесь лежит символическая ссылка на оригинал index.cgi
AccessFileName .htaccess
<Directory /usr/local/accnt/HTML>
Options Indexes MultiViews
AllowOverride All
Order Allow,Deny
Allow From All
</Directory>
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/ssl_access.log combined
SSLEngine on
SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem
SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key
</VirtualHost>
</IfModule>