Reputation: 173
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
Reputation: 346
Recompile nginx
with the --with-http_perl_module
option to ./configure
.
Upvotes: 1