SSL without IIS

Please show:
netstat -pant | grep -E ':80|:443' | grep -i listen

You are at the right IP:
Name: ipbonline.ru
Address: 94.228.200.250

PS C:\Users\Администратор> netstat -o -n -a | findstr :80
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 4
TCP ************************************************ TIME_WAIT 0
TCP *********************************************** TIME_WAIT 0
TCP [::]:8080 [::]:0 LISTENING 4
PS C:\Users\Администратор> netstat -o -n -a | findstr :443
TCP 0.0.0.0:443 0.0.0.0:0 LISTENING 4
TCP ************************************************ ESTABLISHED 1852
TCP ************************************************ CLOSE_WAIT 5564
TCP ************************************************ CLOSE_WAIT 9088
TCP ************************************************ CLOSE_WAIT 9088
TCP ************************************************ CLOSE_WAIT 9088
TCP ************************************************ ESTABLISHED 6604
TCP ************************************************ TIME_WAIT 0
TCP [::]:443 [::]:0 LISTENING 4

Try also with -b:
netstat -onab | more

you have to look at it with your eyes
see which process/program is running/listening on port 443

PS C:\Users\Администратор> netstat -onab | findstr :443
TCP 0.0.0.0:443 0.0.0.0:0 LISTENING 4
TCP ************************************************ ESTABLISHED 1852
TCP ************************************************ CLOSE_WAIT 5564
TCP ************************************************ CLOSE_WAIT 9088
TCP ************************************************ CLOSE_WAIT 9088
TCP ************************************************ CLOSE_WAIT 9088
TCP ************************************************ ESTABLISHED 6604
TCP [::]:443 [::]:0 LISTENING 4

yes, I will search now

The line after :443 should show the program

Did you miss my previous post?:
Line #1 should be your problem

1 Like

Oh yes, you were right, I deleted IIS completely, and my port 443 was closed, there was a question how to open it with Apache :).
really only firewall?

Shit. I should read my own output correct.

Info: Different Server-Headers found
Server: Apache/2.4.27 (Win64) OpenSSL/1.1.0f PHP/7.2.0RC1
Server: Microsoft-HTTPAPI/2.0
last check: 13.12.2018 16:43:09

Sorry!

Tested your domain with my own tool ipbonline.ru - Make your website better - DNS, redirects, mixed content, certificates - then I had to do other things.

There are the different servers.

1 Like

Oh yeees, it all worked, thank you all so much for the help.
Only I thought that Apache itself opens port 443, and then it was necessary in the firewall. Well, anyway, thank you all very much for your help :slight_smile:

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.