HTTPD
De The Linux Craftsman
Autres actions
| HTTP | HTTPS | |
|---|---|---|
| Protocole | tcp | tcp |
| Port | 80 | 443 |
| Configuration Iptables | iptables -I INPUT 2 -p tcp --dport 80 -j ACCEPT | iptables -I INPUT 2 -p tcp --dport 443 -j ACCEPT |
Installation
Pour faire de l'http
# yum -y install httpd
Pour faire de l'https
# yum -y install httpd mod_ssl