Project

General

Profile

issue while running lighttpd with 1.4.46

Added by mukeshsale almost 4 years ago

Hi,
I am using the v1.4.46 but while running it gives me error about mod_openssl.
The error as below:
2020-06-12 03:59:40: (mod_openssl.c.983) ssl.pemfile has to be set in same scope as other ssl.* directives, unless only ssl.engine is set, inheriting ssl.* from global scope ssl.openssl.ss
2020-06-12 03:59:40: (server.c.1312) Initialization of plugins failed. Going down.

The config file has:

server.modules              = ("mod_fastcgi", "mod_setenv","mod_wstunnel","mod_proxy","mod_openssl")
## SSL Engine
$SERVER["socket"] == ":443" {
  ssl.engine = "enable" 
  server.use-ipv6 = "enable" 
  ssl.pemfile = "/usr/local/www/certs/server.pem" 
  ssl.privkey = "/usr/local/www/certs/privkey.pem" 
  ssl.openssl.ssl-conf-cmd = ("MinProtocol" => "TLSv1.2") # (recommended to accept only TLSv1.2 and TLSv1.3)
  ssl.cipher-list = "TLSv1+HIGH !SSLv2 !RC4 !aNULL !eNULL !3DES @STRENGTH" 
}

Please let me wht is the issue here ? I have added the correct pem files.


Replies (1)

RE: issue while running lighttpd with 1.4.46 - Added by gstrauss almost 4 years ago

You can see your post history here: https://redmine.lighttpd.net/users/12064

In many of those links, you'll find the same advice: READ THE DOCUMENTATION.

Start with lighttpd -h

    (1-1/1)