Nginx没有执行.pl扩展。它会下载文件

时间:2017-12-18 20:46:45

标签: perl nginx

我正在使用Nginx服务器。

如果我访问index.pl,则会下载该文件而不是执行该文件。

我非常确定这与/etc/nginx/sites-available/default

有关

这是一份副本

listen 80;
listen [::]:80;

server_name domain.com;

root /var/www/domain.com;
index index.html index.php index.pl;

location / {
    try_files $uri $uri/ =404;
}

location ~ \.php$ {
    include snippets/fastcgi-php.conf;

    # With php-fpm (or other unix sockets):
    fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
    # With php-cgi (or other tcp sockets):
    #fastcgi_pass 127.0.0.1:9000;
}

如您所见,我已将index.pl添加到index列表的末尾。

我需要什么才能让它发挥作用?

0 个答案:

没有答案