step by step quickest way to create a web page on linux
need a quick way to create a web page on linux? here it is step by step:
as root install httpd (if not already installed)
yum install httpd
as whoever, modify the default index.html page in /var/www/html
note: configs for httpd are in /etc/httpdcd /var/www/html cp index.html index.html.bak vi index.html chmod 755 index.html
as root, start the httpd service
service httpd start
tada! now check it with your browser
http://yourhostname