I have two sample applications on the same machine. this is php. I need to develop an application that supports cross-domain cookies. so now I'm trying to run two applications on a different port on the apache server. so for this I changed the port number in httpd.conf. as I added Listen 8080 and I do not understand about
VirtualHost *:80 ServerAdmin webmaster@dummy-host.example.com DocumentRoot /www/docs/dummy-host.example.com ServerName dummy-host.example.com ErrorLog logs/dummy-host.example.com-error_log CustomLog logs/dummy-host.example.com-access_log common
Please let me know how to add this for my second port 8080. I launch my application from a browser as xxx.xx.x.xx / First / Cookies. I tried as xxx.xx.x.xx: 80 / First / Cookies. how can i try this for 8080 for my second application. Please guide me.
source share