1.
|
What is the Apache HTTP server? |
|
Apache is the world's most popular web server. It runs on both
Unix-like and Windows operating systems, conforms to web standards
and can be extended with additional modules. Its claimed the name
“Apache” came from the fact that it originally
consisted of changes to the NCSA HTTPd v1.3 server and therefore was
“a patchy” server. |
2.
|
How do I install the Apache HTTP Server? |
|
|
3.
|
How do I install PHP for the Apache HTTP Server? |
|
|
4.
|
How do I install MYSQL for the Apache HTTP
Server? |
|
|
5.
|
How do I map URLs to folders outside
/var/www/? |
|
|
6.
|
How do I change the default port number for the Apache
HTTP Server? |
|
|
|
Assuming that the new port number is “79” |
|
7.
|
How do I browse the changed port number for the Apache
HTTP Server in Mozilla Firefox? |
|
|
|
Assuming that the new port number is “79” |
Read How do I change the default port number for the Apache HTTP Server?
-
sudo cp /usr/lib/mozilla-firefox/greprefs/all.js /usr/lib/mozilla-firefox/greprefs/all.js_backup
sudo gedit /usr/lib/mozilla-firefox/greprefs/all.js
-
Find this section
...
// If there is ever a security firedrill that requires
// us to block certian ports global, this is the pref
// to use. Is is a comma delimited list of port numbers
// for example:
// pref("network.security.ports.banned", "1,2,3,4,5");
// prevents necko connecting to ports 1-5 unless the protocol
// overrides.
...
-
Add the following line below it
pref("network.security.ports.banned.override", "79");
Save the edited file (sample/all.js_browsechangedportnumberfirefox)
Restart Mozilla Firefox
|