ceph/mirroring/apache2.vhost.conf
Wido den Hollander 1e4dfae0b4 Script and Guidelines for mirroring Ceph
This commit introduces a script which admins can use to mirror
the Ceph packages to their local systems.

With this script they can easily sync from a mirror local to them.

The README explains user on how and when to sync the sources and
how they can become a official mirror for Ceph.

Signed-off-by: Wido den Hollander <wido@42on.com>
2016-01-28 10:08:39 +01:00

19 lines
488 B
Plaintext

#
# This is a example Apache 2 VirtualHost being used
# on eu.ceph.com which runs on Ubuntu 14.04
#
<VirtualHost *:80>
ServerName eu.ceph.com
ServerAdmin webmaster@localhost
DocumentRoot /srv/mirror/ceph/download
<Directory /srv/mirror/ceph/download>
Options FollowSymLinks Indexes
AllowOverride none
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>