Send https request to Mega compatible Ethernet shield from website

i have a website to control the AC's individually. I have hosted my website in server and generally it will hosted in https. When i send a request to Arduino mega with ethernet that connected to a static IP and that will be http only. when i send request it rejected by browser itself. Because website hosted on https. So that i want to assign a https ip in my Arduino . Is there any possible ways to do that ?

Any help is appreciated.

Thanks.

I really don't think a Mega has the capacity to handle an encrypted connection.
You need to use a more powerful microcontroller like an ESP32 for example

Thanks for you reply. But i have requirement to use Ethernet only

Even though the ESP32 has a built-in WiFi interface, there is nothing stopping you from using an Ethernet module.

In reality, the ESP32 also has an integrated Ethernet controller, all you need is a transceiver, the problem is that there is not much available in the form of ready-made modules (take a look at the circuit diagrams of the Espressif Ethernet dev-kits)

You could also choose another MCU with similar computing capabilities.

there are ESP boards with Ethernet available.
just as example, some tests with the WT32-ETH01
WT32-ETH01 - ESP32 Board with Ethernet Socket (rothschopf.net)

@noiasca that is for esp32 Arduino v. 2. it is obsolete fo v.3

@Juraj I assume you refer to WebServer_WT32_ETH01 by khoih-prog ?
If so - thanks for the hint, I will add a remark.