blue ice
blue ice

Reputation: 173

Install Perl Module Nginx

I am following this tutorial and got an error with perl_modules:

root@ns516302:~# service nginx restart
Restarting nginx: nginx: [emerg] unknown directive "perl_modules" in /etc/nginx/sites-enabled/default:1
nginx: configuration file /etc/nginx/nginx.conf test failed
root@ns516302:~#

How do I install perl_module into nginx?

There is not much info on this link.

Upvotes: 1

Views: 6560

Answers (2)

Arthur
Arthur

Reputation: 49

Try this:

sudo apt-get install nginx-extras

Upvotes: 2

moveax3
moveax3

Reputation: 346

Recompile nginx with the --with-http_perl_module option to ./configure.

Upvotes: 1

Related Questions