Thread: PHP Set up
View Single Post
  #9  
Old 19th Apr 03, 08:28 AM
Sephiroth Sephiroth is offline
BetaONE Supporter
 
Join Date: Jul 2001
Posts: 1,979
Sephiroth is an unknown quantity at this point
Send a message via MSN to Sephiroth
Quote:
Originally posted by poolman@Apr 6 2003, 01:00 AM
Apache, but I am not allowed to host my own site (ISP Rules) But, I want to know if I can run from a much higher port than 80. I want to try and eliminate port scans from my ISP as much as possible.

Any Ideas?

Thanks for all the help so far
You can.

In Apache's config file, httpd.conf, there will be a few lines that read something like this:

Code:
# # Listen: Allows you to bind Apache to specific IP addresses and/or # ports, in addition to the default. See also the <VirtualHost> # directive. # #Listen 3000 #Listen 12.34.56.78:80 Listen 80
change the last one to Listen #### , replacing #### with the port you want it to run on, and then restart the server
Reply With Quote