Hi,
How can we set a default IP and Port for apache, http and https.
For example when adding new site the apache should take the user defined default IP and port in the below tag:
<VirtualHost *:80>
I want the default to be some thing user defined as below:
<VirtualHost 127.0.0.1:8080>
Also, how can we simultaneously install Apache and Nginx both using different port, for example:
NGINX: HTTP port: 80 | HTTPS port: 443
Apache: HTTP port 7080 | HTTPS port: 8080
Appreciate your help !!
Thank You !!