mirror of
https://github.com/ceph/ceph
synced 2024-12-09 21:21:10 +00:00
1e4dfae0b4
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>
19 lines
488 B
Plaintext
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>
|