Bind apache 2.0 to IP Hi ! sorry for my english I bind main web server (apache 2.0) to first IP non secure port listen on only first IP, but secure port (443) listen on all interfaces what can i do for it ? Thanks in advance.
Use the Listen directive in your Apache configuration, e.g. Code: Listen 1.2.3.4:80 Listen 1.2.3.4:443 Restart Apache afterwards.