I want to create a virtual host in apache such that it serves only static content like stylesheets, videos, images, javascripts, text files, etc. I am not looking at any \"proce
Create a VirtualHost
entry as follows:
ServerAdmin admin@domain.tld
ServerName media.domain.tld
DocumentRoot "/Library/WebServer/Documents/media"
ErrorLog "/private/var/log/apache2/media-error_log"
CustomLog "/private/var/log/apache2/media-access_log" common
Order deny,allow
Allow from all
SetHandler default-handler