windows 8 - Xampp Apache server not responding to request -


i have installed xampp server (xampp-win32-5.6.8-0-vc11-installer) on windows 8 64 bit os. have deployed helloworld application folder in htdocs directory , added virtual host in httpd-vhosts.conf file below

 <virtualhost localhost:80>   documentroot c:/xampp/htdocs/   rewriteengine on   proxyrequests off   servername localhost   <directory c:/xampp/htdocs/aasifeweb/app/>    require granted    allow </directory>   <location />   proxypass   http://localhost/aasifeweb/app/#/home   proxypassreverse http://localhost/aasifeweb/app/#/home   proxypassreversecookiepath  / http://localhost/aasifeweb/app/#/home   </location> </virtualhost> 

apache error log file

[fri aug 07 19:23:26.149126 2015] [ssl:warn] [pid 2684:tid 448] ah01909: www.example.com:443:0 server certificate not include id matches server name [fri aug 07 19:23:26.200160 2015] [core:warn] [pid 2684:tid 448] ah00098: pid file c:/xampp/apache/logs/httpd.pid overwritten -- unclean shutdown of previous apache run? [fri aug 07 19:23:26.268206 2015] [ssl:warn] [pid 2684:tid 448] ah01909: www.example.com:443:0 server certificate not include id matches server name [fri aug 07 19:23:26.298225 2015] [mpm_winnt:notice] [pid 2684:tid 448] ah00455: apache/2.4.12 (win32) openssl/1.0.1l php/5.6.8 configured -- resuming normal operations [fri aug 07 19:23:26.298225 2015] [mpm_winnt:notice] [pid 2684:tid 448] ah00456: apache lounge vc11 server built: jan 28 2015 16:48:40 [fri aug 07 19:23:26.298225 2015] [core:notice] [pid 2684:tid 448] ah00094: command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d c:/xampp/apache' [fri aug 07 19:23:26.301227 2015] [mpm_winnt:notice] [pid 2684:tid 448] ah00418: parent: created child process 3576 ah00548: namevirtualhost has no effect , removed in next release c:/xampp/apache/conf/extra/httpd-vhosts.conf:20 [fri aug 07 19:23:26.763535 2015] [ssl:warn] [pid 3576:tid 448] ah01909: www.example.com:443:0 server certificate not include id matches server name [fri aug 07 19:23:26.885617 2015] [ssl:warn] [pid 3576:tid 448] ah01909: www.example.com:443:0 server certificate not include id matches server name [fri aug 07 19:23:26.918638 2015] [mpm_winnt:notice] [pid 3576:tid 448] ah00354: child: starting 150 worker threads. [fri aug 07 19:23:29.637450 2015] [mpm_winnt:error] [pid 3576:tid 4852] ah00326: server ran out of threads serve requests. consider raising threadsperchild setting 

this problem occurs when add virtual host configuration httpd-vhosts.conf file. when remove virtual host, server seems respond. deployed application written in angular-js framework

important: request seems appending resource path again , again. but, i'm not sure why happens?

get /aasifeweb/app/%23/homeaasifeweb/app/%23/homeaasifeweb/app/%23/homeaasifeweb/app/%23 

when hit http://localhost in browser, keeps loading. there lot of solutions in internet, nothing works me.

things have tried solve problem

  • i have done netsh winsock reset
  • i have changed port of apache server
  • i have disabled skype , antivirus

please let me know views

i didn't have use proxypass @ all. had point directory , angularjs - ng-route takes care of page routing.

<virtualhost localhost:80>   documentroot c:/xampp/htdocs/aasifeweb/app </virtualhost> 

Comments

Popular posts from this blog

python - pip install -U PySide error -

arrays - C++ error: a brace-enclosed initializer is not allowed here before ‘{’ token -

cytoscape.js - How to add nodes to Dagre layout with Cytoscape -