sudo vim /etc/httpd/conf/httpd.conf
Lorsque vim s'ouvre, supprimez les commentaires suivants. Il peut être plus rapide de rechercher en mode commande (comme
/ cgi / g```).
#
AddHandler cgi-script .cgi #Peut-être ici?
#
Redémarrez.
sudo service httpd restart
Créez le fichier suivant.
hello.cgi
#!/usr/bin/env python
# -*- coding: utf-8 -*-
print "Content-Type: text/plain"
print
print "hello world!"
Accédez à http: // [adresse] /hello.cgi. Je pense qu'il sera affiché ...
Forbidden
You don't have permission to access /hello.cgi on this server.
Puisqu'il dit Permission, j'ai essayé quelque chose comme `` chmod 755 hello.cgi '', mais cela n'a pas changé.
Recommended Posts