![]() |
|
ForumFri Apr 29 15:23:25 2022 UTC Help: InstallationThierry ![]() Fri Apr 29 13:17:57 2022 UTC Help: InstallationBatmanxx1 ![]() Fri Apr 29 12:59:46 2022 UTC Help: InstallationBatmanxx1 ![]() Fri Apr 29 12:15:00 2022 UTC Help: InstallationThierry ![]() Fri Apr 29 12:02:18 2022 UTC Help: InstallationBatmanxx1 ![]() Fri Apr 29 12:00:41 2022 UTC Help: InstallationBatmanxx1 ![]() Fri Apr 29 10:35:51 2022 UTC Help: InstallationThierry ![]() Fri Apr 29 09:22:07 2022 UTC Help: InstallationBatmanxx1 ![]() Mon Apr 11 08:49:01 2022 UTC Help: GeneralThierry ![]() Sun Apr 10 11:10:47 2022 UTC Help: Generalbru65pag ![]() |
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. |