1.

Is It Possible To Provide Http And Https From The Same Server?

Answer»

Yes. HTTP and HTTPS use DIFFERENT server ports (HTTP binds to PORT 80, HTTPS to port 443), so there is no direct conflict between them. You can either RUN two separate server instances bound to these ports, or use Apache’s elegant virtual hosting facility to CREATE two virtual servers, both served by the same instance of Apache - one RESPONDING over HTTP to requests on port 80, and the other responding over HTTPS to requests on port 443.

Yes. HTTP and HTTPS use different server ports (HTTP binds to port 80, HTTPS to port 443), so there is no direct conflict between them. You can either run two separate server instances bound to these ports, or use Apache’s elegant virtual hosting facility to create two virtual servers, both served by the same instance of Apache - one responding over HTTP to requests on port 80, and the other responding over HTTPS to requests on port 443.



Discussion

No Comment Found