简体   繁体   中英

how to create a VirtualHost to serve only static content

我想在apache中创建一个虚拟主机,它只提供静态内容,如样式表,视频,图像,javascripts,文本文件等。我不是在寻找这个虚拟主机的任何“处理”功能。

Create a VirtualHost entry as follows:

<VirtualHost *:80>
    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

    <Directory /Library/WebServer/Documents/media>
    Order deny,allow
    Allow from all
    SetHandler default-handler
    </Directory>

</VirtualHost>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM