Skip to content
Snippets Groups Projects
Commit c8ed3654 authored by Bilal Al massati's avatar Bilal Al massati
Browse files

Delete procedure-apache.md

parent afe1c16a
Branches
No related tags found
No related merge requests found
# Serveur WEB
## Installation Apache 2
apt-get install apache 2
## Adressage ip en static :
nano /etc/network/interfaces
### rajout des lignes :
iface enp0s3 inet static
address 192.168.40.159/24
gateway 192.168.40.254
## Acces au dossier page web :
cd /var/www/html/
// Tout ce qui sera intégré dans le dossier HTML est affiché sur la page web.
## exemple index.html :
<!DOCTYPE html>
<html>
<head>
<title> NetworkAndCo </title>
</head>
<body>
<h1> BIENVENUE </h1>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment