Search This Blog

Showing posts with label web server. Show all posts
Showing posts with label web server. Show all posts

Sunday, May 10, 2015

Name-based Virtual Hosting

/etc/httpd/conf/httpd.conf

NameVirtualHost *:80

< VirtualHost *:80 >
    ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot /var/www/html/drupal
   ServerName example.com
    ErrorLog logs/example.com-error_log
    CustomLog logs/example.com-access_log common
</ VirtualHost >

service httpd restart

Monday, April 27, 2015

CentOS Web Server Port 80 iptables

Setup Apache on your web server, but webpage does not show.

iptables -I INPUT -p tcp --dport 80 -j ACCEPT
service iptables save