configure : install apache php jsp mysql tomcat windows xp
Moderator: General Moderators
- pelegk2
- Forum Regular
- Posts: 633
- Joined: Thu Nov 27, 2003 5:02 am
- Location: Israel - the best place to live in after heaven
- Contact:
configure : install apache php jsp mysql tomcat windows xp
does any 1 know of manualls hat teach how to configure :
install apache php jsp mysql tomcat windows xp
install apache php jsp mysql tomcat windows xp
- pelegk2
- Forum Regular
- Posts: 633
- Joined: Thu Nov 27, 2003 5:02 am
- Location: Israel - the best place to live in after heaven
- Contact:
how can i make iis and apache 2 run on winxp?
how can i make iis and apache 2 run on winxp?
is it possible?then how?
thnaks i nadvance
peleg
is it possible?then how?
thnaks i nadvance
peleg
a snipped from my httpd.conf
Code: Select all
Listen 8080
ServerName localhost:8080
UseCanonicalName Off
NameVirtualhost *:8080
<VirtualHost *:8080>
ServerName localhost
DocumentRoot "C:/websites/localhost"
<Directory "C:/websites/localhost">
AllowOverride All
Options All
</Directory>
</Virtualhost>
<VirtualHost *:8080>
ServerName test
DocumentRoot "C:/websites/test"
<Directory "C:/websites/test">
AllowOverride All
Options All
</Directory>
</Virtualhost>