[MPlayer-cvslog] r18729 - trunk/DOCS/tech/mirrors/mirror_howto.txt

diego subversion at mplayerhq.hu
Fri Jun 16 13:39:23 CEST 2006


Author: diego
Date: Fri Jun 16 13:39:23 2006
New Revision: 18729

Modified:
   trunk/DOCS/tech/mirrors/mirror_howto.txt

Log:
Setting up a web server and FTP server.


Modified: trunk/DOCS/tech/mirrors/mirror_howto.txt
==============================================================================
--- trunk/DOCS/tech/mirrors/mirror_howto.txt	(original)
+++ trunk/DOCS/tech/mirrors/mirror_howto.txt	Fri Jun 16 13:39:23 2006
@@ -142,13 +142,30 @@
 Setting up a webserver
 ~~~~~~~~~~~~~~~~~~~~~~
 
-TO BE DONE
+Set up Apache or whatever web server you prefer. We just have static pages,
+so no fancy configuration is necessary. However, we need a few aliases so that
+links on our pages work correctly. /MPlayer and /DOCS should redirect to the
+directory with the downloadable files and /homepage should redirect to the
+directory with the HTML pages.
+
+Here is an example stanza to paste into your Apache configuration:
+
+<VirtualHost www#.mplayerhq.hu>
+        DocumentRoot /path/to/htdocs
+        Options FollowSymLinks
+        Alias /homepage /path/to/htdocs
+        Alias /MPlayer  /path/to/MPlayer
+        Alias /DOCS     /path/to/MPlayer/DOCS
+</VirtualHost>
 
 
 Setting up an FTP server
 ~~~~~~~~~~~~~~~~~~~~~~~~
 
-TO BE DONE
+Any FTP server will do. We use vsftpd, it's fast and secure. You should have
+the same directory layout as we do on our server, so there should be a
+subdirectory named 'MPlayer' (notice the capitals) that contains the
+downloadable files.
 
 
 Mailinglist



More information about the MPlayer-cvslog mailing list