├── .htaccess ├── package.php ├── release.php ├── checker.php └── README /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | 3 | RewriteBase /your_repo_folder/ 4 | RewriteRule ^(Release)$ release.php 5 | RewriteRule ^(Packages.*)$ package.php 6 | -------------------------------------------------------------------------------- /package.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /release.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /checker.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | A sample UDID-protected repo 2 | 3 | edit accepted UDID inside checker.php 4 | 5 | see .htaccess which plays an important role here. 6 | 7 | Special thanks to http://serverfault.com/questions/166535/creating-a-password-protected-cydia-repository 8 | 9 | ------- 10 | @moeseth 11 | --------------------------------------------------------------------------------