Situatie
Se instaleaza httpd pentru configurare server web prin pasii de mai jos:
Solutie
Pasi de urmat
Se instaleaza httpd (apache)
yum -y install httpd
Stergem pagina Welcome:
rm -f /etc/httpd/conf.d/welcome.conf
Stergem pagina de eroare care vine default :
rm -f /var/www/error/noindex.html
Configuram httpd :
vi /etc/httpd/conf/httpd.conf
ServerTokens Prod
KeepAlive On
ServerAdmin root@srv.world
AllowOverride All
ServerName www.srv.world:80
DirectoryIndex index.html index.htm
ServerSignature Off
Se porneste si se activeaza serviciul:
/etc/rc.d/init.d/httpd start
chkconfig httpd on
Daca ruleaza iptables se ruleaza comanda de mai jos
Pentru “-I INPUT 5” se modifica in functie de mediul vostru
iptables -I INPUT 5 -p tcp -m state –state NEW -m tcp –dport 80 -j ACCEPT
Leave A Comment?