bearbeiten:

bearbeiten:

Ich habe einen Apache 2.4.46-3-Server, der von /srv/http aus bedient. Ich habe einen Ordner /srv/http/bin mit 2 Dateien:

.htaccess(Modus 644):

AddHandler cgi-script .exe
Options +ExecCGI

Haupt.exe(Modus 755): kompiliert aus main.cpp:

#include <iostream>
using namespace std;

int main () {
   cout << "Content-type:text/html\r\n\r\n";
   cout << "<html>\n";
   cout << "<head>\n";
   cout << "<title>Hello World - First CGI Program</title>\n";
   cout << "</head>\n";
   cout << "<body>\n";
   cout << "<h2>Hello World! This is my first CGI program</h2>\n";
   cout << "</body>\n";
   cout << "</html>\n";
   
   return 0;
}

Aber wenn ich die Seite localhost/bin/main.exe besuche, wird mir angeboten, die EXE herunterzuladen, anstatt das HTML anzuzeigen. Habe ich vergessen, etwas zu aktivieren?

bearbeiten:

Problem mit dem CGI-Bin-Verzeichnis das hat mein Problem NICHT gelöst!

Das Ersetzen aller Vorkommen von exedurch cgihat mein Problem auch nicht gelöst!

Hinzufügen

<Directory "/srv/http/bin">
    Options +ExecCGI
    AddHandler cgi-script cgi pl exe
    AllowOverride All
    Require all granted
</Directory>

Auch die Änderung von httpd.conf hat das Problem NICHT gelöst! Es gibt keine Fehler im /var/log/httpd/error_logZusammenhang mit CGIs, EXEs oder dem Ordner /srv/http/bin, was könnte also hier los sein?

Antwort1

Es stellte sich heraus, dass ich das CGI-Modul nicht in httpd.conf geladen hatte.

Hier ist die relevante Konfiguration (suchen Sie in Ihrer Konfiguration nach „cgi_module“):

<IfModule !mpm_prefork_module>
        LoadModule cgid_module modules/mod_cgid.so
</IfModule>
<IfModule mpm_prefork_module>
        LoadModule cgi_module modules/mod_cgi.so
</IfModule>

verwandte Informationen