5

When I run sbin/nginx -t I get the following error

[emerg]: the "ssl" parameter requires ngx_http_ssl_module in /root/cloudfoundry/.deployments/devbox/deploy/nginx/nginx-0.8.54/conf/nginx.conf:98
configuration file /root/cloudfoundry/.deployments/devbox/deploy/nginx/nginx-0.8.54/conf/nginx.conf test failed
voretaq7
  • 79,879
  • 17
  • 130
  • 214
user1745933
  • 51
  • 1
  • 1
  • 2

1 Answers1

8

It looks like your nginx haven't been built with ngx_http_ssl_module. See the output of nginx -V if there is no --with-http_ssl_module parameter then ssl will not work

B14D3
  • 5,188
  • 15
  • 64
  • 83