diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-08-10 15:57:42 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-08-11 21:04:02 +0200 |
commit | a47f4915dcc057b8b57130886e009db9ca6afd44 (patch) | |
tree | e1ad6102c8b8fc7bc09bc3233561b2a9a35e1cf5 /UPGRADING | |
parent | 43d28c8840c566d6006d81853011c0d2d02636f0 (diff) | |
download | aur-a47f4915dcc057b8b57130886e009db9ca6afd44.tar.gz aur-a47f4915dcc057b8b57130886e009db9ca6afd44.tar.xz |
UPGRADING: Add note on backward compatible package URLs
Thanks-to: Dave Reisner <d@falconindy.com>
Thanks-to: Dan McGee <dan@archlinux.org>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'UPGRADING')
-rw-r--r-- | UPGRADING | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -22,6 +22,23 @@ ALTER TABLE PackageDepends ADD INDEX (DepName); 6. Run the upload directory transform script ("scripts/uploadbuckets.sh") and rotate the converted directory structure into place. +7. In order to to provide backward compatible package URLs, enable mod_rewrite +and add the following to your Apache configuration (inside the "VirtualHost" +container or optionally create a ".htaccess" file in the upload directory): + +---- +RewriteEngine on +RewriteRule ^/packages/([^/]{1,2})([^/]*/(PKGBUILD|.*\.tar\.gz|))$ /packages/$1/$1$2 +---- + +The following equivalent rule can be used for lighttpd setups: + +---- +url.rewrite-once = ( "^/packages/([^/]{1,2})([^/]*/(PKGBUILD|.*\.tar\.gz|))$" => "/packages/$1/$1$2" ) +---- + +If you use a non-standard URL_DIR, slight modifications might be necessary. + From 1.8.1 to 1.8.2 ------------------- |