![]() |
|
ForumWed Sep 27 12:34:35 2023 UTC Help: GeneralThierry ![]() Wed Sep 27 12:30:24 2023 UTC Help: GeneralPeppe123$$$ ![]() Wed Sep 27 11:30:55 2023 UTC Help: GeneralThierry ![]() Wed Sep 27 07:31:22 2023 UTC Help: GeneralPeppe123$$$ ![]() Tue Sep 26 09:53:25 2023 UTC Help: GeneralPeppe123$$$ ![]() Mon Sep 25 20:38:46 2023 UTC Help: Generalspiky ![]() Mon Sep 25 17:08:09 2023 UTC Help: GeneralThierry ![]() Sat Sep 23 12:00:57 2023 UTC Help: Generalpupuklok ![]() Sat Sep 23 05:38:00 2023 UTC Help: Generaldevlin7 ![]() Thu Sep 21 09:33:52 2023 UTC Help: GeneralThierry ![]() |
Thu Sep 5 19:31:46 2019 UTC Setup of an HTTP serverIntroductionAn http server can be useful if we want to test some html pages on a real browser. It will allow us to create our own website that is locally accessible from a home network. In addition, an http server also allows us to make a webpage that can be made public for all of the internet. Packages to installThe installation and activation of the http service is very simple. Open a terminal and enter the command: get apache apache.service That's it, the installation is already done. ConfigurationThe default configuration of the apache http server is basic. It is recommended you make a custom configuration. The example that follows shows the creation of a customised html file. This command is ran as root: cat > /srv/www/index.html << EOF <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> <TITLE>Welcome on your HTML server</TITLE> </HEAD> <BODY> <H1>Your NuTyX http server is working</H1> <P>Hello everybody ! </BODY> </HTML> EOF Service startingActivate the service, still as root: /etc/rc.d/init.d/httpd start * Starting Apache HTTP daemon... [ OK ] You can check the result of your work by going to the URL address: http://localhost/ with your favorite browser. |