The problem is the following, forgotten passwords from certificates. We want to disable ssl, but it does not work. LoadModule ssl_module doing apachectl start gives:

 /etc/rc.conf: linux-enable=YES: not found /etc/rc.conf: linux-enable=YES: not found Performing sanity check on apache22 configuration: Syntax error on line 36 of /usr/local/etc/apache22/vhosts/foo: Invalid command 'SSLOptions', perhaps misspelled or defined by a module not included in the server configuration 

SSLEngine off in the file /usr/local/etc/apache22/extra/httpd-ssl.conf does not work either. Someone can say step by step how to remove ssl and run apache.

  • You have disabled SSL support, but other directives with SSL settings have remained in the configs. Because SSL is no longer supported by you, these directives have stopped working and give errors. You need to find and comment out everything related to SSL. In the error you cited, this is SSLOptions directive - AntonioK
  • Yes already commented out everything. But thanks for the tip! - Warden

0