⭐ in reply to how do i configure apache webserver to run perl scripts
You need to tell Apache two things:
So, to configure your Apache for the above path configs, add this line to your httpd.conf:
You may need to adjust the paths, but that should get you started.ScriptAlias /cgi-bin/ /home/httpd/cgi-bin/
It's in the Apache Docs.
If you don't have access to httpd.conf, you can use .htaccess files, but you can't use ScriptAlias. In that case you can use the AddType directive, which associates file extensions with mime types. More in the appropriate docs.
|
|---|