Stars: 103
Forks: 37
Pull Requests: 21
Issues: 8
Watchers: 10
Last Updated: 2022-12-10 17:04:01
Anonymous url redirector and shortener
License: MIT License
Languages: PHP, Shell, Blade
anon.to is an anonymous URL redirector and shortener built using Laravel.
git clone https://github.com/bhutanio/anon.to.git anon.to
.env
refer to .env.example
composer install --no-dev
php artisan migrate
latest version of anon.to is fully compatible with all previous versions. All you have to do is run the migration.
php artisan migrate
php artisan tinker
DB::table('users')->where('id', 2)->update(['email'=>'[email protected]']);
Click on forgot password link on the login page and reset password for your admin user.
crontab -e -u www-data
* * * * * php /home/web/anon.to/artisan schedule:run >/dev/null 2>&1
*/5 * * * * php /home/web/anon.to/artisan auth:clear-resets >/dev/null 2>&1
nano /etc/supervisor/conf.d/anon.conf
[program:anon-queue]
process_name=%(program_name)s_%(process_num)02d
command=php /home/web/anon.to/artisan queue:work --sleep=3 --tries=3
autostart=true
autorestart=true
user=www-data
numprocs=2
Visit https://www.google.com/recaptcha/admin and register your site
Get Site key and Secret key, add them in your .env file
...
## Secret Key
API_GOOGLE_RECAPTCHA='SECRET KEY'
## Site Key
API_GOOGLE_RECAPTCHA_CLIENT='SITE KEY'
...
anon.to is open source software licensed under the MIT license.